From 09a049f38f992f16a6f593435f1cc90c655e660a Mon Sep 17 00:00:00 2001 From: Alex Harker Date: Sun, 17 Mar 2019 17:08:00 +0000 Subject: [PATCH] Temporary fix for checking parameters (now in the wrong place) --- include/FluidSCWrapper.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FluidSCWrapper.hpp b/include/FluidSCWrapper.hpp index d9dc181..281c253 100644 --- a/include/FluidSCWrapper.hpp +++ b/include/FluidSCWrapper.hpp @@ -320,7 +320,7 @@ protected: private: static Result validateParameters(NonRealTime *w, World *world, sc_msg_iter *args) { - auto results = w->mParams.template checkParameterValues(world, args); + auto results = w->mParams.template checkParameterValues();//(world, args); for (auto &r : results) { if (!r.ok()) return r;