diff options
author | Chris Lattner <sabre@nondot.org> | 2009-02-20 18:57:29 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-02-20 18:57:29 +0000 |
commit | 2f0fe337f499c78710b718324b25510670d885b1 (patch) | |
tree | 67d57cb969fdfd66fb5658f6096cc0e0b6a5ba55 | |
parent | f4fe0f082f21048c0777ad5aeac04a5a94db1f46 (diff) |
remove dead list.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65142 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/DeclObjC.h | 7 |
1 files changed, 1 insertions, 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: |