aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/DeclObjC.h
diff options
context:
space:
mode:
authorSam Bishop <sam@bishop.dhs.org>2008-04-11 18:04:39 +0000
committerSam Bishop <sam@bishop.dhs.org>2008-04-11 18:04:39 +0000
commit1bb19638f2ec0d63ed131b51ca8d9542d1a9afee (patch)
treeb4f0cb9425641903c28c01290051bd5e3e54a51a /include/clang/AST/DeclObjC.h
parent45bc03f9202d5649fd41f35b98d34bb34823d0f3 (diff)
Invoke destructors in Decl::Destroy().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49547 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/DeclObjC.h')
-rw-r--r--include/clang/AST/DeclObjC.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/clang/AST/DeclObjC.h b/include/clang/AST/DeclObjC.h
index e9d03a1769..0efdd2e60d 100644
--- a/include/clang/AST/DeclObjC.h
+++ b/include/clang/AST/DeclObjC.h
@@ -103,7 +103,7 @@ private:
SelName(SelInfo), MethodDeclType(T),
ParamInfo(0), NumMethodParams(0),
MethodAttrs(M), EndLoc(endLoc), Body(0), SelfDecl(0) {}
- virtual ~ObjCMethodDecl();
+ ~ObjCMethodDecl();
public:
static ObjCMethodDecl *Create(ASTContext &C,
@@ -175,6 +175,8 @@ public:
// Implement isa/cast/dyncast/etc.
static bool classof(const Decl *D) { return D->getKind() == ObjCMethod; }
static bool classof(const ObjCMethodDecl *D) { return true; }
+
+ friend void Decl::Destroy(ASTContext& C) const;
};
/// ObjCInterfaceDecl - Represents an ObjC class declaration. For example: