From: Ted Kremenek Date: Tue, 6 Nov 2007 22:23:53 +0000 (+0000) Subject: QualType deserialization now requires that the underlying pointer type X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=31354ca624767ab7a5c17c25e7af125361d2848e;p=clang QualType deserialization now requires that the underlying pointer type must be deserialized without requiring backpatching. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43786 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/AST/TypeSerialization.cpp b/AST/TypeSerialization.cpp index 92dff502d4..878b80688d 100644 --- a/AST/TypeSerialization.cpp +++ b/AST/TypeSerialization.cpp @@ -24,7 +24,7 @@ void QualType::Emit(llvm::Serializer& S) const { } void QualType::Read(llvm::Deserializer& D) { - D.ReadUIntPtr(ThePtr); + D.ReadUIntPtr(ThePtr,false); ThePtr |= D.ReadInt(); }