X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ftostring.h;h=b1a6cbf49e476be94c51fa4d5f55ebccf0b5196a;hp=4c603330f8d4b099a7169398335b6284e639f978;hb=ffad02322624ab79fdad1a23a3aa83cd67376151;hpb=e7cc6a764ff67b5885d6633385fac23ccc1dc9a7 diff --git a/ginac/tostring.h b/ginac/tostring.h index 4c603330..b1a6cbf4 100644 --- a/ginac/tostring.h +++ b/ginac/tostring.h @@ -4,7 +4,7 @@ * internal header file. */ /* - * GiNaC Copyright (C) 1999-2002 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 @@ -32,7 +32,7 @@ template std::string ToString(const T & t) { std::ostringstream buf; - buf << t << std::ends; + buf << t; return buf.str(); }