forked from OSchip/llvm-project
Remove 'followsSuper' argument from lookupPropertyAccessor. Turns out I didn't need it.
llvm-svn: 201879
This commit is contained in:
parent
348e88c36a
commit
e76bbba045
|
@ -1228,11 +1228,10 @@ public:
|
|||
/// including in all categories except for category passed
|
||||
/// as argument.
|
||||
ObjCMethodDecl *lookupPropertyAccessor(const Selector Sel,
|
||||
const ObjCCategoryDecl *Cat,
|
||||
bool followsSuper = true) const {
|
||||
const ObjCCategoryDecl *Cat) const {
|
||||
return lookupMethod(Sel, true/*isInstance*/,
|
||||
false/*shallowCategoryLookup*/,
|
||||
followsSuper /* followsSuper */,
|
||||
true /* followsSuper */,
|
||||
Cat);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue