File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3951,11 +3951,12 @@ void ClangModuleUnit::lookupObjCMethods(
3951
3951
// Collect all of the Objective-C methods with this selector.
3952
3952
SmallVector<clang::ObjCMethodDecl *, 8 > objcMethods;
3953
3953
auto &clangSema = owner.getClangSema ();
3954
- clangSema.CollectMultipleMethodsInGlobalPool (clangSelector,
3954
+ auto &clangObjc = clangSema.ObjC ();
3955
+ clangObjc.CollectMultipleMethodsInGlobalPool (clangSelector,
3955
3956
objcMethods,
3956
3957
/* InstanceFirst=*/ true ,
3957
3958
/* CheckTheOther=*/ false );
3958
- clangSema .CollectMultipleMethodsInGlobalPool (clangSelector,
3959
+ clangObjc .CollectMultipleMethodsInGlobalPool (clangSelector,
3959
3960
objcMethods,
3960
3961
/* InstanceFirst=*/ false ,
3961
3962
/* CheckTheOther=*/ false );
You can’t perform that action at this time.
0 commit comments