astyle formatting

This commit is contained in:
Daniel Marjamäki 2013-09-23 06:03:44 +02:00
parent d1c9cac155
commit 1feabd0f0a
1 changed files with 1 additions and 2 deletions

View File

@ -35,8 +35,7 @@ public:
typedef long long bigint;
static bigint toLongNumber(const std::string & str);
template<class T> static std::string toString(T value)
{
template<class T> static std::string toString(T value) {
std::ostringstream result;
result << value;
return result.str();