diff options
Diffstat (limited to 'include/clang/AST/Decl.h')
-rw-r--r-- | include/clang/AST/Decl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index 019673ab1b..ac08f96508 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -372,6 +372,7 @@ protected: static FunctionDecl* CreateImpl(llvm::Deserializer& D, ASTContext& C); friend Decl* Decl::Create(llvm::Deserializer& D, ASTContext& C); + friend void Decl::Destroy(ASTContext& C) const; }; @@ -452,6 +453,7 @@ protected: static EnumConstantDecl* CreateImpl(llvm::Deserializer& D, ASTContext& C); friend Decl* Decl::Create(llvm::Deserializer& D, ASTContext& C); + friend void Decl::Destroy(ASTContext& C) const; }; @@ -504,6 +506,7 @@ protected: static TypedefDecl* CreateImpl(llvm::Deserializer& D, ASTContext& C); friend Decl* Decl::Create(llvm::Deserializer& D, ASTContext& C); + friend void Decl::Destroy(ASTContext& C) const; }; |