diff options
-rw-r--r-- | include/clang/AST/DeclObjC.h | 5 | ||||
-rw-r--r-- | lib/AST/ASTContext.cpp | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/include/clang/AST/DeclObjC.h b/include/clang/AST/DeclObjC.h index 76e4c0211e..9acce0f541 100644 --- a/include/clang/AST/DeclObjC.h +++ b/include/clang/AST/DeclObjC.h @@ -412,6 +412,11 @@ public: FieldDecl *lookupFieldDeclForIvar(ASTContext &Context, const ObjCIvarDecl *ivar); + const FieldDecl *lookupFieldDeclForIvar(ASTContext &Ctx, + const ObjCIvarDecl *IV) const { + return const_cast<ObjCInterfaceDecl*>(this)->lookupFieldDeclForIvar(Ctx,IV); + } + bool isForwardDecl() const { return ForwardDecl; } void setForwardDecl(bool val) { ForwardDecl = val; } diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index 18a3a4221a..2e350c8502 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -650,9 +650,7 @@ const RecordDecl *ASTContext::addRecordToClass(const ObjCInterfaceDecl *D) void ASTContext::setFieldDecl(const ObjCInterfaceDecl *OI, const ObjCIvarDecl *Ivar, const ObjCIvarRefExpr *MRef) { - FieldDecl *FD = (const_cast<ObjCInterfaceDecl *>(OI))-> - lookupFieldDeclForIvar(*this, Ivar); - ASTFieldForIvarRef[MRef] = FD; + ASTFieldForIvarRef[MRef] = OI->lookupFieldDeclForIvar(*this, Ivar); } /// getASTObjcInterfaceLayout - Get or compute information about the layout of |