aboutsummaryrefslogtreecommitdiff
path: root/common/file.h
diff options
context:
space:
mode:
authorMax Horn2009-07-29 21:39:16 +0000
committerMax Horn2009-07-29 21:39:16 +0000
commiteedce48aa39b424c7b93c5f5069fd1be89878bdc (patch)
tree9bc4cf2959a1b00475d9adb716c3943caab6fb85 /common/file.h
parent6df25f47c3a794eb7d10ecebc7d05cab8552dc9f (diff)
downloadscummvm-rg350-eedce48aa39b424c7b93c5f5069fd1be89878bdc.tar.gz
scummvm-rg350-eedce48aa39b424c7b93c5f5069fd1be89878bdc.tar.bz2
scummvm-rg350-eedce48aa39b424c7b93c5f5069fd1be89878bdc.zip
Removed redundant File::ioFailed() implementation; also turned ReadStream::ioFailed from a virtual into an inline method
svn-id: r42911
Diffstat (limited to 'common/file.h')
-rw-r--r--common/file.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/common/file.h b/common/file.h
index 892395a184..6ac633c462 100644
--- a/common/file.h
+++ b/common/file.h
@@ -126,13 +126,6 @@ public:
*/
const char *getName() const { return _name.c_str(); }
- /**
- * DEPRECATED: Use err() or eos() instead.
- * Returns true if any I/O failure occurred or the end of the
- * stream was reached while reading.
- */
- bool ioFailed() const;
-
bool err() const; // implement abstract Stream method
void clearErr(); // implement abstract Stream method
bool eos() const; // implement abstract SeekableReadStream method