From: Fariborz Jahanian Date: Tue, 2 Oct 2007 22:12:45 +0000 (+0000) Subject: Unified SuperClass field name in an objective-c class. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=93efc029bf485de724fd783ad14b58aaec9c919b;p=clang Unified SuperClass field name in an objective-c class. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@42556 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/DeclObjC.h b/include/clang/AST/DeclObjC.h index b7fa9ae10c..7fb438d79f 100644 --- a/include/clang/AST/DeclObjC.h +++ b/include/clang/AST/DeclObjC.h @@ -581,9 +581,9 @@ class ObjcImplementationDecl : public TypeDecl { 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; }