From 0ccadb2835d169e834ab9bb44bdb299fbf7de660 Mon Sep 17 00:00:00 2001 From: Serge Pavlov Date: Tue, 15 Oct 2013 14:24:32 +0000 Subject: [PATCH] Fixed code style of my change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192708 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaLookup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.50.1