diff --git a/clang/lib/AST/DeclSerialization.cpp b/clang/lib/AST/DeclSerialization.cpp index 91d043ce8ff6a6367858baca30a2f64547bbd1cf..d2dde67cb2f499a3ea493515991dccc05196f6ed 100644 --- a/clang/lib/AST/DeclSerialization.cpp +++ b/clang/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. }