From 3660089bcf6877b58f5ef3e11bc80d973200ab8a Mon Sep 17 00:00:00 2001 From: Owen Green Date: Tue, 13 Aug 2019 09:30:44 +0100 Subject: [PATCH] FluidSCWrapper: Add missing newline to error message so it appears at the correct moment --- include/FluidSCWrapper.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FluidSCWrapper.hpp b/include/FluidSCWrapper.hpp index 8c5b09b..02195cf 100644 --- a/include/FluidSCWrapper.hpp +++ b/include/FluidSCWrapper.hpp @@ -631,7 +631,7 @@ public: p.template setParameterValues(verbose, world, inputs); if (constrain)p.constrainParameterValues(); } else { - std::cout << "ERROR: " << getName() << ": parameter count mismatch. Perhaps your binary plugins and SC sources are different versions"; + std::cout << "ERROR: " << getName() << ": parameter count mismatch. Perhaps your binary plugins and SC sources are different versions\n"; //TODO: work out how to bring any further work to a halt } return p;