[cfe-commits] r65142 - /cfe/trunk/include/clang/AST/DeclObjC.h
Chris Lattner
sabre at nondot.org
Fri Feb 20 10:57:29 PST 2009
Author: lattner
Date: Fri Feb 20 12:57:29 2009
New Revision: 65142
URL: http://llvm.org/viewvc/llvm-project?rev=65142&view=rev
Log:
remove dead list.
Modified:
cfe/trunk/include/clang/AST/DeclObjC.h
Modified: cfe/trunk/include/clang/AST/DeclObjC.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclObjC.h?rev=65142&r1=65141&r2=65142&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclObjC.h (original)
+++ cfe/trunk/include/clang/AST/DeclObjC.h Fri Feb 20 12:57:29 2009
@@ -702,16 +702,11 @@
/// 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:
More information about the cfe-commits
mailing list