summaryrefslogtreecommitdiff
path: root/shared/parse_txt.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/parse_txt.h')
-rw-r--r--shared/parse_txt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/parse_txt.h b/shared/parse_txt.h
index ca155dec..479f950e 100644
--- a/shared/parse_txt.h
+++ b/shared/parse_txt.h
@@ -16,8 +16,8 @@ namespace zen
class ExtractLines
{
public:
- ExtractLines(const Zstring& filename, const std::string& lineBreak = std::string()); //throw (FileError)
- bool getLine(std::string& output); //throw (FileError)
+ ExtractLines(const Zstring& filename, const std::string& lineBreak = std::string()); //throw FileError
+ bool getLine(std::string& output); //throw FileError
private:
zen::FileInput inputStream;
bgstack15