From 077e0f09d12a4bd61908863df35528de1cd80c53 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 20 Feb 2009 20:42:28 +0000 Subject: [PATCH] destroy should forward to base class. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65151 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/DeclObjC.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/AST/DeclObjC.cpp b/lib/AST/DeclObjC.cpp index ccf641f94d..98343e7222 100644 --- a/lib/AST/DeclObjC.cpp +++ b/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); } -- 2.40.0