aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2008-09-06 21:23:08 +0000
committerMax Horn2008-09-06 21:23:08 +0000
commit6bfa3e274a882dc0ac0b8362b225ae3234f4830b (patch)
treebb625613d1a715fa4feeef37509f721163fc0941 /common
parent7a7e7102908e5e9468ad9cf4077c5ded0657bb50 (diff)
downloadscummvm-rg350-6bfa3e274a882dc0ac0b8362b225ae3234f4830b.tar.gz
scummvm-rg350-6bfa3e274a882dc0ac0b8362b225ae3234f4830b.tar.bz2
scummvm-rg350-6bfa3e274a882dc0ac0b8362b225ae3234f4830b.zip
Got rid of File::eof()
svn-id: r34396
Diffstat (limited to 'common')
-rw-r--r--common/file.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/common/file.h b/common/file.h
index c81a7c87d1..dcbc0244af 100644
--- a/common/file.h
+++ b/common/file.h
@@ -92,15 +92,6 @@ public:
void clearIOFailed();
bool eos() const;
- /**
- * Checks for end of file.
- *
- * @deprecated: use eos() instead
- *
- * @return: true if the end of file is reached, false otherwise.
- */
- virtual bool eof() const { return eos(); }
-
virtual uint32 pos() const;
virtual uint32 size() const;
void seek(int32 offs, int whence = SEEK_SET);