src/lemon/bits/item_reader.h
changeset 1429 4283998fb2be
parent 1427 14c75970840e
     1.1 --- a/src/lemon/bits/item_reader.h	Thu May 19 11:46:42 2005 +0000
     1.2 +++ b/src/lemon/bits/item_reader.h	Thu May 19 11:49:42 2005 +0000
     1.3 @@ -348,7 +348,7 @@
     1.4      
     1.5      void read(std::istream& is, Value& value) const {
     1.6        char c;
     1.7 -      if (!(is >> c)) return;
     1.8 +      if (!(is >> std::ws >> c)) return;
     1.9        is.putback(c);
    1.10        switch (c) {
    1.11        case '\"':