From 93efc029bf485de724fd783ad14b58aaec9c919b Mon Sep 17 00:00:00 2001 From: Fariborz Jahanian Date: Tue, 2 Oct 2007 22:12:45 +0000 Subject: [PATCH] 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 --- include/clang/AST/DeclObjC.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.40.0