forked from OSchip/llvm-project
Add a const version of ObjCClassDecl::getForwardDecl, no functionality change.
llvm-svn: 144342
This commit is contained in:
parent
f707ae6733
commit
85b075b845
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue