aboutsummaryrefslogtreecommitdiff
path: root/common/file.cpp
diff options
context:
space:
mode:
authorMax Horn2009-07-29 21:39:00 +0000
committerMax Horn2009-07-29 21:39:00 +0000
commit6df25f47c3a794eb7d10ecebc7d05cab8552dc9f (patch)
treeecdadfbb713ad6f11ed6328bc9c05552fe98d387 /common/file.cpp
parentd91d68a9ca03b69d285517736c62d5cd9f70d63b (diff)
downloadscummvm-rg350-6df25f47c3a794eb7d10ecebc7d05cab8552dc9f.tar.gz
scummvm-rg350-6df25f47c3a794eb7d10ecebc7d05cab8552dc9f.tar.bz2
scummvm-rg350-6df25f47c3a794eb7d10ecebc7d05cab8552dc9f.zip
Removed last traces of clearIOFailed. Yay :)
svn-id: r42910
Diffstat (limited to 'common/file.cpp')
-rw-r--r--common/file.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/common/file.cpp b/common/file.cpp
index 7836a7d4a8..69338f32f9 100644
--- a/common/file.cpp
+++ b/common/file.cpp
@@ -124,11 +124,6 @@ bool File::ioFailed() const {
return !_handle || (eos() || err());
}
-void File::clearIOFailed() {
- if (_handle)
- _handle->clearErr();
-}
-
bool File::err() const {
assert(_handle);
return _handle->err();