commit | a4af543375104757a9e90757c2955dc49689b83f | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Fri Feb 20 20:42:28 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Fri Feb 20 20:42:28 2009 +0000 |
tree | baf760d2e4929ebd3621efa4f800a80534e3ea80 | |
parent | d7ba858314967a096a57e55f9c6864a595f01682 [diff] [blame] |
destroy should forward to base class. llvm-svn: 65151
diff --git a/clang/lib/AST/DeclObjC.cpp b/clang/lib/AST/DeclObjC.cpp index ccf641f..98343e7 100644 --- a/clang/lib/AST/DeclObjC.cpp +++ b/clang/lib/AST/DeclObjC.cpp
@@ -178,6 +178,7 @@ /// Destroy - Call destructors and release memory. void ObjCImplementationDecl::Destroy(ASTContext& C) { IVars.clear(); + Decl::Destroy(C); }