forked from OSchip/llvm-project
Fix the caller of checkCorrectionVisibility too.
That's what I get for hurredly splitting the small change out of a much bigger change that had moved where checkCorrectionVisibility was being called. llvm-svn: 211134
This commit is contained in:
parent
61df4a787e
commit
a95ebc6801
|
@ -4384,7 +4384,7 @@ TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName,
|
|||
|
||||
TypoCorrection TC = Result;
|
||||
TC.setCorrectionRange(SS, TypoName);
|
||||
checkCorrectionVisibility(*this, TC, TypoName.getName());
|
||||
checkCorrectionVisibility(*this, TC);
|
||||
return TC;
|
||||
}
|
||||
// Ugly hack equivalent to CTC == CTC_ObjCMessageReceiver;
|
||||
|
|
Loading…
Reference in New Issue