diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04T16·29+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04T16·29+0000 |
commit | ae6d9033a1c6b0b863b94c239c35a2df1a58948a (patch) | |
tree | bd26fa9b589c9dd80a71d4804d17e170c2ecab6b | |
parent | d8a31da1ea418de9c1fb7968b95d74d700a7a54f (diff) |
* The eof() state isn't guaranteed to be set non-lazily. GCC 2.95
compatibility fix.
-rw-r--r-- | src/libutil/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 65c3b15397c7..574c2566b7a5 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -688,5 +688,5 @@ bool string2Int(const string & s, int & n) { istringstream str(s); str >> n; - return str && str.eof(); + return str && str.get() == EOF; } |