]> www.ginac.de Git - ginac.git/blobdiff - ginac/archive.cpp
* Indentation and alignment fixes.
[ginac.git] / ginac / archive.cpp
index 3b6e2931fc6231298738e1bcd2900d057a43fa45..a25f8bd0d5857510dd8c371c19eeaed2f8f4a181 100644 (file)
@@ -3,7 +3,7 @@
  *  Archiving of GiNaC expressions. */
 
 /*
- *  GiNaC Copyright (C) 1999-2003 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
@@ -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);