diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp index ccf641f94d41..98343e722228 100644 --- a/clang/lib/AST/DeclObjC.cpp +++ b/clang/lib/AST/DeclObjC.cpp @@ -178,6 +178,7 @@ ObjCImplementationDecl::Create(ASTContext &C, DeclContext *DC, /// Destroy - Call destructors and release memory. void ObjCImplementationDecl::Destroy(ASTContext& C) { IVars.clear(); + Decl::Destroy(C); }