Two new TODO/FIXME comments for class File

svn-id: r33138
This commit is contained in:
Max Horn 2008-07-20 16:47:34 +00:00
parent c625a6a647
commit 113352bbde

@ -452,10 +452,12 @@ bool File::isOpen() const {
}
bool File::ioFailed() const {
// TODO/FIXME: Just use ferror() here?
return _ioFailed != 0;
}
void File::clearIOFailed() {
// TODO/FIXME: Just use clearerr() here?
_ioFailed = false;
}