]> www.ginac.de Git - ginac.git/blobdiff - ginac/tostring.h
* zeta(n,x) is now zetaderiv(n,s)
[ginac.git] / ginac / tostring.h
index 1a403eba9b88a761ec6bbab6c36ae3822ecc9817..b1a6cbf49e476be94c51fa4d5f55ebccf0b5196a 100644 (file)
@@ -4,7 +4,7 @@
  *  internal header file. */
 
 /*
  *  internal header file. */
 
 /*
- *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2003 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
  *
  *  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;
 std::string ToString(const T & t)
 {
        std::ostringstream buf;
-       buf << t << std::ends;
+       buf << t;
        return buf.str();
 }
 
        return buf.str();
 }