X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Ftostring.h;h=666f110c064bdc4450d7557d6e4034b7e8a1825c;hp=1a403eba9b88a761ec6bbab6c36ae3822ecc9817;hb=ff96974562b86f5c04f82ecd91b2cdb97f6bd990;hpb=0c8c12f5393a7ca5f78233af5ee81593184c35fb diff --git a/ginac/tostring.h b/ginac/tostring.h index 1a403eba..666f110c 100644 --- a/ginac/tostring.h +++ b/ginac/tostring.h @@ -4,7 +4,7 @@ * internal header file. */ /* - * GiNaC Copyright (C) 1999-2001 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 std::string ToString(const T & t) { std::ostringstream buf; - buf << t << std::ends; + buf << t; return buf.str(); }