diff options
author | Ted Kremenek <kremenek@apple.com> | 2007-11-05 17:41:25 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2007-11-05 17:41:25 +0000 |
commit | aa499b6ab30975d0cea225f71b33e7ee60b88a1f (patch) | |
tree | e52591d7a2b33cdb135559b01302e0709aa3b1cd | |
parent | 8c35a9b3b9764bc18c1dadbfe02d152305228dbf (diff) |
Made methods "Emit" and "Materialize" in ASTContext (used for serialization) public.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43713 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/ASTContext.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/AST/ASTContext.h b/include/clang/AST/ASTContext.h index a994d66fa9..854fc3fe43 100644 --- a/include/clang/AST/ASTContext.h +++ b/include/clang/AST/ASTContext.h @@ -305,7 +305,8 @@ private: //===--------------------------------------------------------------------===// // Serialization //===--------------------------------------------------------------------===// - + +public: void Emit(llvm::Serializer& S) const; static ASTContext* Materialize(llvm::Deserializer& D); }; |