From: Ted Kremenek Date: Fri, 9 Nov 2007 00:43:55 +0000 (+0000) Subject: Changed method call to reflect updated serialization API. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b0eff8a12f7b3e48fa1022c3ce5a07ac03a85cd;p=clang Changed method call to reflect updated serialization API. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43917 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Basic/IdentifierTable.cpp b/Basic/IdentifierTable.cpp index a69e65fe19..48fb086852 100644 --- a/Basic/IdentifierTable.cpp +++ b/Basic/IdentifierTable.cpp @@ -433,7 +433,7 @@ void IdentifierTable::Emit(llvm::Serializer& S) const { } IdentifierTable* IdentifierTable::Materialize(llvm::Deserializer& D) { - llvm::Deserializer::Location BLoc = D.GetCurrentBlockLocation(); + llvm::Deserializer::Location BLoc = D.getCurrentBlockLocation(); std::vector buff; buff.reserve(200);