From: Richard Smith Date: Tue, 11 Aug 2015 00:03:28 +0000 (+0000) Subject: Fix some tabs. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e143c09dadd009ee77f82ba941995bc8c4a291e8;p=clang Fix some tabs. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@244537 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/CompilerInstance.cpp b/lib/Frontend/CompilerInstance.cpp index 740f1db825..33a330d317 100644 --- a/lib/Frontend/CompilerInstance.cpp +++ b/lib/Frontend/CompilerInstance.cpp @@ -1631,11 +1631,10 @@ GlobalModuleIndex *CompilerInstance::loadGlobalModuleIndex( if (!Entry) { SmallVector, 2> Path; Path.push_back(std::make_pair( - getPreprocessor().getIdentifierInfo(TheModule->Name), TriggerLoc)); + getPreprocessor().getIdentifierInfo(TheModule->Name), TriggerLoc)); std::reverse(Path.begin(), Path.end()); - // Load a module as hidden. This also adds it to the global index. - loadModule(TheModule->DefinitionLoc, Path, - Module::Hidden, false); + // Load a module as hidden. This also adds it to the global index. + loadModule(TheModule->DefinitionLoc, Path, Module::Hidden, false); RecreateIndex = true; } }