From ae6d9033a1c6b0b863b94c239c35a2df1a58948a Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 4 May 2005 16:29:44 +0000 Subject: * The eof() state isn't guaranteed to be set non-lazily. GCC 2.95 compatibility fix. --- src/libutil/util.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libutil') 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; } -- cgit 1.4.1