X-Git-Url: https://ginac.de/ginac.git//ginac.git?a=blobdiff_plain;f=ginac%2Ftostring.h;h=5ef9d94d47b69c5e0c1807c272cae6dd0d65adc5;hb=f772746ad9d324b00f53beb7bfa29711286d93f2;hp=4c603330f8d4b099a7169398335b6284e639f978;hpb=e7cc6a764ff67b5885d6633385fac23ccc1dc9a7;p=ginac.git diff --git a/ginac/tostring.h b/ginac/tostring.h index 4c603330..5ef9d94d 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-2007 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 @@ -18,7 +18,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef __GINAC_TOSTRING_H__ @@ -32,7 +32,7 @@ template std::string ToString(const T & t) { std::ostringstream buf; - buf << t << std::ends; + buf << t; return buf.str(); }