From: Kaelyn Takata Date: Tue, 17 Jun 2014 23:47:29 +0000 (+0000) Subject: Fix the caller of checkCorrectionVisibility too. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a95ebc6801c8d162534034e80d61a3d84bfb265c;p=platform%2Fupstream%2Fllvm.git 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 --- diff --git a/clang/lib/Sema/SemaLookup.cpp b/clang/lib/Sema/SemaLookup.cpp index 788ca87..9abff2c 100644 --- a/clang/lib/Sema/SemaLookup.cpp +++ b/clang/lib/Sema/SemaLookup.cpp @@ -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;