From 60d9c2bc1d8095f06c13fbf1bcce2d5c587a3a64 Mon Sep 17 00:00:00 2001 From: Martin Michlmayr Date: Tue, 13 May 2014 18:08:34 -0400 Subject: Remove trailing whitespace from error messages Fix for bug #867 --- src/context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/context.h') diff --git a/src/context.h b/src/context.h index 9f5bfe8f..27b733a1 100644 --- a/src/context.h +++ b/src/context.h @@ -101,10 +101,10 @@ public: } void warning(const string& what) const { - warning_func(location() + what); + warning_func(location() + " " + what); } void warning(const boost::format& what) const { - warning_func(location() + string(what.str())); + warning_func(location() + " " + string(what.str())); } }; -- cgit v1.2.3