--- trunk/OOPSE-2.0/src/utils/StringUtils.hpp 2005/01/12 22:41:40 1930 +++ trunk/OOPSE-2.0/src/utils/StringUtils.hpp 2005/01/14 16:49:46 1945 @@ -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(); }