This is the mail archive of the libstdc++@sourceware.cygnus.com mailing list for the libstdc++ project. See the libstdc++ home page for more information.
The basic_ios::fail() member function returns true if the eofbit
or the failbit is set. ------
bool fail () const { return (rdstate () & (eofbit | failbit)) != 0; }
Why the eofbit? I would expect the badbit instead.
------
bool fail () const { return (rdstate () & (badbit | failbit)) != 0; }
Ryszard Kabatek
Martin-Luther University Halle-Wittenberg, Department of Physical Chemistry
Geusaer Str. 88, 06217 Merseburg, Germany
Tel. +49 3461 46 2487 Fax. +49 3461 46 2129