Remove 'followsSuper' argument from lookupPropertyAccessor. Turns out I didn't need it.

llvm-svn: 201879
This commit is contained in:
Ted Kremenek 2014-02-21 19:41:37 +00:00
parent 348e88c36a
commit e76bbba045
1 changed files with 2 additions and 3 deletions

View File

@ -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);
}