summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-20 18:57:29 +0000
committerChris Lattner <sabre@nondot.org>2009-02-20 18:57:29 +0000
commited2776a85cbc2a0b71bd4cdc55606c753b7e9cb1 (patch)
treedc2652198bbe94e5555bb38704549c4e230ead52
parent5006f4a5f0c6d3cf54aa15caf9227788691a6445 (diff)
downloadbcm5719-llvm-ed2776a85cbc2a0b71bd4cdc55606c753b7e9cb1.tar.gz
bcm5719-llvm-ed2776a85cbc2a0b71bd4cdc55606c753b7e9cb1.zip
remove dead list.
llvm-svn: 65142
-rw-r--r--clang/include/clang/AST/DeclObjC.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/clang/include/clang/AST/DeclObjC.h b/clang/include/clang/AST/DeclObjC.h
index 08f6ae9f983..cd80b70b2a1 100644
--- a/clang/include/clang/AST/DeclObjC.h
+++ b/clang/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:
OpenPOWER on IntegriCloud