diff options
Diffstat (limited to 'clang/lib/AST/DeclObjC.cpp')
-rw-r--r-- | clang/lib/AST/DeclObjC.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp index 9fc0f763bbd..ea7a047780c 100644 --- a/clang/lib/AST/DeclObjC.cpp +++ b/clang/lib/AST/DeclObjC.cpp @@ -73,13 +73,9 @@ void ObjCInterfaceDecl::Destroy(ASTContext& C) { for (ivar_iterator I=ivar_begin(), E=ivar_end(); I!=E; ++I) if (*I) (*I)->Destroy(C); - for (method_iterator I=meth_begin(), E=meth_end(); I!=E; ++I) - if (*I) const_cast<ObjCMethodDecl*>((*I))->Destroy(C); - // FIXME: Because there is no clear ownership // role between ObjCInterfaceDecls and the ObjCPropertyDecls that they // reference, we destroy ObjCPropertyDecls in ~TranslationUnit. - Decl::Destroy(C); } @@ -115,20 +111,6 @@ ObjCProtocolDecl::~ObjCProtocolDecl() { delete [] PropertyDecl; } -void ObjCProtocolDecl::Destroy(ASTContext& C) { - - // Referenced Protocols are not owned, so don't Destroy them. - - for (method_iterator I=meth_begin(), E=meth_end(); I!=E; ++I) - if (*I) const_cast<ObjCMethodDecl*>((*I))->Destroy(C); - - // FIXME: Because there is no clear ownership - // role between ObjCProtocolDecls and the ObjCPropertyDecls that they - // reference, we destroy ObjCPropertyDecls in ~TranslationUnit. - - Decl::Destroy(C); -} - ObjCClassDecl *ObjCClassDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, |