[cfe-commits] r42556 - /cfe/trunk/include/clang/AST/DeclObjC.h
Fariborz Jahanian
fjahanian at apple.com
Tue Oct 2 15:12:45 PDT 2007
Author: fjahanian
Date: Tue Oct 2 17:12:45 2007
New Revision: 42556
URL: http://llvm.org/viewvc/llvm-project?rev=42556&view=rev
Log:
Unified SuperClass field name in an objective-c class.
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=42556&r1=42555&r2=42556&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclObjC.h (original)
+++ cfe/trunk/include/clang/AST/DeclObjC.h Tue Oct 2 17:12:45 2007
@@ -581,9 +581,9 @@
void ObjcAddImplMethods(ObjcMethodDecl **insMethods, unsigned numInsMembers,
ObjcMethodDecl **clsMethods, unsigned numClsMembers);
- ObjcInterfaceDecl *getImplSuperClass() const { return SuperClass; }
+ ObjcInterfaceDecl *getSuperClass() const { return SuperClass; }
- void setImplSuperClass(ObjcInterfaceDecl * superCls)
+ void setSuperClass(ObjcInterfaceDecl * superCls)
{ SuperClass = superCls; }
ObjcMethodDecl **getInstanceMethods() const { return InstanceMethods; }
More information about the cfe-commits
mailing list