diff --git a/lib/mathlib.h b/lib/mathlib.h index 95da6a41c..6e75ebaff 100644 --- a/lib/mathlib.h +++ b/lib/mathlib.h @@ -35,8 +35,7 @@ public: typedef long long bigint; static bigint toLongNumber(const std::string & str); - template static std::string toString(T value) - { + template static std::string toString(T value) { std::ostringstream result; result << value; return result.str();