From 1feabd0f0ac9adeed0bce1b3b2af35bbbef419e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 23 Sep 2013 06:03:44 +0200 Subject: [PATCH] astyle formatting --- lib/mathlib.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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();