]> granicus.if.org Git - clang/commitdiff
remove dead list.
authorChris Lattner <sabre@nondot.org>
Fri, 20 Feb 2009 18:57:29 +0000 (18:57 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Feb 2009 18:57:29 +0000 (18:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@65142 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/DeclObjC.h

index 08f6ae9f9831158789489a0126856381a2ead42a..cd80b70b2a113c95317e77ee5df4f8c3d9c7ea22 100644 (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: