diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-05-12 17:42:30 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-05-12 17:42:30 +0000 |
commit | adbb619a14e82f53c00a91df3e29436c7d21c9f7 (patch) | |
tree | bf2f336b8f1f097632542bb9a1582258ae7c993a /lib/AST/DeclSerialization.cpp | |
parent | 666de3be924efb85e12c27ae1937c459a4b6ecc7 (diff) |
Unbreak build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@50980 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclSerialization.cpp')
-rw-r--r-- | lib/AST/DeclSerialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/DeclSerialization.cpp b/lib/AST/DeclSerialization.cpp index 91d043ce8f..d2dde67cb2 100644 --- a/lib/AST/DeclSerialization.cpp +++ b/lib/AST/DeclSerialization.cpp @@ -117,7 +117,7 @@ void ScopedDecl::ReadInRec(Deserializer& D, ASTContext& C) { NamedDecl::ReadInRec(D, C); D.ReadPtr(Next); // From ScopedDecl. - assert(DeclCtx == 0) // Allow back-patching. Observe that we register + assert(DeclCtx == 0); // Allow back-patching. Observe that we register D.ReadPtr(DeclCtx); // the variable of the *object* for back-patching. // Its actual value will get filled in later. } |