From bcc73a5225aa2f7e842a0ced26098f4f9c619bf8 Mon Sep 17 00:00:00 2001 From: Mathias Baumann Date: Wed, 7 Aug 2019 11:57:19 +0200 Subject: [PATCH] New Error Reporter: Fix trailing whitespace --- liblangutil/SourceReferenceFormatterHuman.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblangutil/SourceReferenceFormatterHuman.cpp b/liblangutil/SourceReferenceFormatterHuman.cpp index f246c2641..de288df91 100644 --- a/liblangutil/SourceReferenceFormatterHuman.cpp +++ b/liblangutil/SourceReferenceFormatterHuman.cpp @@ -73,7 +73,7 @@ void SourceReferenceFormatterHuman::printSourceLocation(SourceReference const& _ // line 0: source name frameColored() << string(leftpad, ' ') << "--> "; - m_stream << _ref.sourceName << ":" << (_ref.position.line + 1) << ":" << (_ref.position.column + 1) << ": " << '\n'; + m_stream << _ref.sourceName << ":" << (_ref.position.line + 1) << ":" << (_ref.position.column + 1) << ":" << '\n'; if (!_ref.multiline) {