[dsymutil] Remove trailing colon. NFC

llvm-svn: 329554
This commit is contained in:
Jonas Devlieghere 2018-04-09 09:10:34 +00:00
parent 396e6ea6d7
commit 862d40896f

View File

@ -589,13 +589,13 @@ static bool inFunctionScope(CompileUnit &U, unsigned Idx) {
void warn(Twine Warning, Twine Context) {
warn_ostream() << Warning + "\n";
if (!Context.isTriviallyEmpty())
note_ostream() << Twine("while processing ") + Context + ":\n";
note_ostream() << Twine("while processing ") + Context + "\n";
}
bool error(Twine Error, Twine Context) {
error_ostream() << Error + "\n";
if (!Context.isTriviallyEmpty())
note_ostream() << Twine("while processing ") + Context + ":\n";
note_ostream() << Twine("while processing ") + Context + "\n";
return false;
}