Fix the caller of checkCorrectionVisibility too.
authorKaelyn Takata <rikka@google.com>
Tue, 17 Jun 2014 23:47:29 +0000 (23:47 +0000)
committerKaelyn Takata <rikka@google.com>
Tue, 17 Jun 2014 23:47:29 +0000 (23:47 +0000)
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

clang/lib/Sema/SemaLookup.cpp

index 788ca87..9abff2c 100644 (file)
@@ -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;