From b7093de5b24e7e2830e3116cf1a39a4d776c5aa1 Mon Sep 17 00:00:00 2001 From: Owen Green Date: Wed, 12 Jun 2019 10:54:21 +0100 Subject: [PATCH] SCWrapper: newline at end of console messages, ensures that they actually appear. --- include/FluidSCWrapper.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FluidSCWrapper.hpp b/include/FluidSCWrapper.hpp index ee631ac..56b32f3 100644 --- a/include/FluidSCWrapper.hpp +++ b/include/FluidSCWrapper.hpp @@ -232,7 +232,7 @@ private: if (!r.ok()) { - std::cout << "ERROR: " << Wrapper::getName() << ": " << r.message().c_str(); + std::cout << "ERROR: " << Wrapper::getName() << ": " << r.message().c_str() << '\n'; return false; }