diff options
Diffstat (limited to 'base/str.hh')
-rw-r--r-- | base/str.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/str.hh b/base/str.hh index 6c3453b8b..8fee21a10 100644 --- a/base/str.hh +++ b/base/str.hh @@ -99,7 +99,7 @@ to_number(const std::string &value, T &retval); template <class T> inline std::string -to_string(const T& value) +to_string(const T &value) { std::stringstream str; str << value; |