From 2f0fe337f499c78710b718324b25510670d885b1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 20 Feb 2009 18:57:29 +0000 Subject: [PATCH] remove dead list. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65142 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/DeclObjC.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/clang/AST/DeclObjC.h b/include/clang/AST/DeclObjC.h index 08f6ae9f98..cd80b70b2a 100644 --- a/include/clang/AST/DeclObjC.h +++ b/include/clang/AST/DeclObjC.h @@ -702,16 +702,11 @@ class ObjCCategoryDecl : public ObjCContainerDecl { /// Next category belonging to this class ObjCCategoryDecl *NextClassCategory; - /// category properties - ObjCPropertyDecl **PropertyDecl; // Null if no property - unsigned NumPropertyDecl; // 0 if none - SourceLocation EndLoc; // marks the '>' or identifier. ObjCCategoryDecl(DeclContext *DC, SourceLocation L, IdentifierInfo *Id) : ObjCContainerDecl(ObjCCategory, DC, L, Id), - ClassInterface(0), - NextClassCategory(0), PropertyDecl(0), NumPropertyDecl(0) { + ClassInterface(0), NextClassCategory(0){ } public: -- 2.40.0