From: Serge Pavlov Date: Tue, 15 Oct 2013 14:24:32 +0000 (+0000) Subject: Fixed code style of my change. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ccadb2835d169e834ab9bb44bdb299fbf7de660;p=clang Fixed code style of my change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192708 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaLookup.cpp b/lib/Sema/SemaLookup.cpp index 6ffb787768..6185e232c5 100644 --- a/lib/Sema/SemaLookup.cpp +++ b/lib/Sema/SemaLookup.cpp @@ -4169,7 +4169,7 @@ TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName, if (!Cached->second.isKeyword() && isCandidateViable(CCC, Cached->second)) { // Do not use correction that is unaccessible in the given scope. - NamedDecl* CorrectionDecl = Cached->second.getCorrectionDecl(); + NamedDecl *CorrectionDecl = Cached->second.getCorrectionDecl(); DeclarationNameInfo NameInfo(CorrectionDecl->getDeclName(), CorrectionDecl->getLocation()); LookupResult R(*this, NameInfo, LookupOrdinaryName);