From dce846953424d29f7c07f4e25c77d1b841fbe62b Mon Sep 17 00:00:00 2001 From: Mathias Baumann Date: Mon, 11 Mar 2019 13:28:46 +0100 Subject: [PATCH] Fix wrong error concatenation --- liblangutil/ErrorReporter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/liblangutil/ErrorReporter.h b/liblangutil/ErrorReporter.h index 8b70aabbf..30b494a0f 100644 --- a/liblangutil/ErrorReporter.h +++ b/liblangutil/ErrorReporter.h @@ -98,7 +98,7 @@ public: auto filterEmpty = boost::adaptors::filtered([](std::string const& _s) { return !_s.empty(); }); - std::string errorStr = dev::joinHumanReadable(descs | filterEmpty); + std::string errorStr = dev::joinHumanReadable(descs | filterEmpty, " "); error(Error::Type::TypeError, _location, errorStr); }