]> www.ginac.de Git - ginac.git/blobdiff - ginac/tostring.h
Happy New Year!
[ginac.git] / ginac / tostring.h
index 4c603330f8d4b099a7169398335b6284e639f978..666f110c064bdc4450d7557d6e4034b7e8a1825c 100644 (file)
@@ -4,7 +4,7 @@
  *  internal header file. */
 
 /*
- *  GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2004 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -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();
 }