--- trunk/src/utils/StringUtils.hpp 2005/01/14 02:40:55 260 +++ trunk/src/utils/StringUtils.hpp 2005/01/14 16:49:46 261 @@ -112,9 +112,7 @@ namespace oopse { */ template std::string toString(const T& v) { - std::ostringstream oss; - T result; - + std::ostringstream oss; oss << v; return oss.str(); }