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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/zen/file_io.h b/zen/file_io.h
index 93267a39..0c7506a1 100644
--- a/zen/file_io.h
+++ b/zen/file_io.h
@@ -39,7 +39,7 @@ typedef FILE* FileHandle;
class FileInput : public FileInputBase
{
public:
- FileInput(const Zstring& filename); //throw FileError, ErrorNotExisting
+ FileInput(const Zstring& filename); //throw FileError
FileInput(FileHandle handle, const Zstring& filename); //takes ownership!
~FileInput();
@@ -68,7 +68,7 @@ private:
class FileInputUnbuffered : public FileInputBase
{
public:
- FileInputUnbuffered(const Zstring& filename); //throw FileError, ErrorNotExisting
+ FileInputUnbuffered(const Zstring& filename); //throw FileError
~FileInputUnbuffered();
//considering safe-read.c it seems buffer size should be a multiple of 8192
bgstack15