diff --git a/include/stichwort/parameter.hpp b/include/stichwort/parameter.hpp index 96dc8dd..5844eba 100644 --- a/include/stichwort/parameter.hpp +++ b/include/stichwort/parameter.hpp @@ -110,7 +110,8 @@ class Parameter } } - void throwIfInvalid() { + void throwIfInvalid() + { if (!valid) { throw wrong_parameter_error(invalidity_reasons); @@ -200,8 +201,7 @@ class CheckedParameter return parameter.is(v); } - template