remove dead list.

llvm-svn: 65142
This commit is contained in:
Chris Lattner 2009-02-20 18:57:29 +00:00
parent 5006f4a5f0
commit ed2776a85c
1 changed files with 1 additions and 6 deletions

View File

@ -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: