forked from OSchip/llvm-project
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
This commit is contained in:
parent
80adc64066
commit
6dcdaa6af3
|
@ -509,6 +509,6 @@ DiagnosticNoteRenderer::emitBuildingModuleLocation(SourceLocation Loc,
|
||||||
Message << "while building module '" << ModuleName << "' imported from "
|
Message << "while building module '" << ModuleName << "' imported from "
|
||||||
<< PLoc.getFilename() << ':' << PLoc.getLine() << ":";
|
<< PLoc.getFilename() << ':' << PLoc.getLine() << ":";
|
||||||
else
|
else
|
||||||
Message << "while building module '" << ModuleName << ":";
|
Message << "while building module '" << ModuleName << "':";
|
||||||
emitNote(Loc, Message.str(), &SM);
|
emitNote(Loc, Message.str(), &SM);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue