]> www.ginac.de Git - ginac.git/commitdiff
synced to 1.0
authorChristian Bauer <Christian.Bauer@uni-mainz.de>
Wed, 6 Nov 2002 20:11:06 +0000 (20:11 +0000)
committerChristian Bauer <Christian.Bauer@uni-mainz.de>
Wed, 6 Nov 2002 20:11:06 +0000 (20:11 +0000)
ginac/tostring.h

index 4c603330f8d4b099a7169398335b6284e639f978..00c32ce6689fe055d40d8f661fd185d33f2be704 100644 (file)
@@ -32,7 +32,7 @@ template<class T>
 std::string ToString(const T & t)
 {
        std::ostringstream buf;
-       buf << t << std::ends;
+       buf << t;
        return buf.str();
 }