X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Farchive.cpp;h=7e5e648dc677dc07d73a1ba6a4fa71455467eadd;hp=158b6a163c89dbcac3155de7e40bc04418152afd;hb=a8c81ff424cab3ac522a71665b0eda55a8ca2f4d;hpb=6d225ee55693c0617d254e6fa283c00c71bd2919 diff --git a/ginac/archive.cpp b/ginac/archive.cpp index 158b6a16..7e5e648d 100644 --- a/ginac/archive.cpp +++ b/ginac/archive.cpp @@ -3,7 +3,7 @@ * Archiving of GiNaC expressions. */ /* - * GiNaC Copyright (C) 1999-2004 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2005 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 @@ -17,7 +17,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 */ #include @@ -188,9 +188,9 @@ static unsigned read_unsigned(std::istream &is) unsigned ret = 0; unsigned shift = 0; do { - char b2; + char b2; is.get(b2); - b = b2; + b = b2; ret |= (b & 0x7f) << shift; shift += 7; } while (b & 0x80);