From f24d9c9158495ffa5d7623c294814298375339b8 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Mon, 28 Apr 2014 20:58:58 +0000 Subject: [PATCH] [cleanup] Fix an 80-column violation llvm-svn: 207446 --- clang/lib/Frontend/CompilerInstance.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index b74c288cdaaf..1fa1f4a10678 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -1180,7 +1180,8 @@ CompilerInstance::loadModule(SourceLocation ImportLoc, return ModuleLoadResult(); } - std::string ModuleFileName = PP->getHeaderSearchInfo().getModuleFileName(Module); + std::string ModuleFileName = + PP->getHeaderSearchInfo().getModuleFileName(Module); // If we don't already have an ASTReader, create one now. if (!ModuleManager)