summaryrefslogtreecommitdiff
path: root/zen/file_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_io.h')
-rw-r--r--zen/file_io.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/file_io.h b/zen/file_io.h
index eb797b7b..33074d7e 100644
--- a/zen/file_io.h
+++ b/zen/file_io.h
@@ -35,7 +35,7 @@ public:
~FileInput();
size_t read(void* buffer, size_t bytesToRead); //throw FileError; returns actual number of bytes read
- bool eof(); //end of file reached
+ bool eof() { return eofReached; } //end of file reached
private:
FileInput(const FileInput&);
bgstack15