Add a const version of ObjCClassDecl::getForwardDecl, no functionality change.

llvm-svn: 144342
This commit is contained in:
Argyrios Kyrtzidis 2011-11-11 00:23:31 +00:00
parent f707ae6733
commit 85b075b845
1 changed files with 1 additions and 0 deletions

View File

@ -1044,6 +1044,7 @@ public:
return ForwardDecl->getInterface();
}
ObjCClassRef *getForwardDecl() { return ForwardDecl; }
const ObjCClassRef *getForwardDecl() const { return ForwardDecl; }
void setClass(ASTContext &C, ObjCInterfaceDecl*const Cls,
const SourceLocation Locs);