From 6dcdaa6af33ab86f6284da7bc9eb8eb793528d61 Mon Sep 17 00:00:00 2001 From: Jordan Rose Date: Sat, 26 Jul 2014 01:22:02 +0000 Subject: [PATCH] Add a missing close quote in "while building module 'Foo:" diagnostic. This isn't a real diagnostic kind, only a location note, and this form isn't even used if the SourceManager can provide a valid presumed location. But still. llvm-svn: 214002 --- clang/lib/Frontend/DiagnosticRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Frontend/DiagnosticRenderer.cpp b/clang/lib/Frontend/DiagnosticRenderer.cpp index cff32b8..bea85b04 100644 --- a/clang/lib/Frontend/DiagnosticRenderer.cpp +++ b/clang/lib/Frontend/DiagnosticRenderer.cpp @@ -509,6 +509,6 @@ DiagnosticNoteRenderer::emitBuildingModuleLocation(SourceLocation Loc, Message << "while building module '" << ModuleName << "' imported from " << PLoc.getFilename() << ':' << PLoc.getLine() << ":"; else - Message << "while building module '" << ModuleName << ":"; + Message << "while building module '" << ModuleName << "':"; emitNote(Loc, Message.str(), &SM); } -- 2.7.4