[cfe-commits] r43713 - /cfe/trunk/include/clang/AST/ASTContext.h
Ted Kremenek
kremenek at apple.com
Mon Nov 5 09:41:25 PST 2007
Author: kremenek
Date: Mon Nov 5 11:41:25 2007
New Revision: 43713
URL: http://llvm.org/viewvc/llvm-project?rev=43713&view=rev
Log:
Made methods "Emit" and "Materialize" in ASTContext (used for serialization) public.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=43713&r1=43712&r2=43713&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Mon Nov 5 11:41:25 2007
@@ -305,7 +305,8 @@
//===--------------------------------------------------------------------===//
// Serialization
//===--------------------------------------------------------------------===//
-
+
+public:
void Emit(llvm::Serializer& S) const;
static ASTContext* Materialize(llvm::Deserializer& D);
};
More information about the cfe-commits
mailing list