From 862d40896fab312ee4842ad1bd4fe16de975ca94 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Mon, 9 Apr 2018 09:10:34 +0000 Subject: [PATCH] [dsymutil] Remove trailing colon. NFC llvm-svn: 329554 --- tools/dsymutil/DwarfLinker.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/dsymutil/DwarfLinker.cpp b/tools/dsymutil/DwarfLinker.cpp index d3a6a15268c..14935aab3bc 100644 --- a/tools/dsymutil/DwarfLinker.cpp +++ b/tools/dsymutil/DwarfLinker.cpp @@ -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; }