check fread calls

This commit is contained in:
Evgeniy Dushistov
2013-07-07 23:29:09 +00:00
parent 5f8d2cb174
commit 8298a578b0
4 changed files with 57 additions and 41 deletions

View File

@@ -6,7 +6,7 @@ class IReadLine {
public:
virtual ~IReadLine() {}
virtual bool read(const std::string &banner, std::string& line) = 0;
virtual void add_to_history(const std::string& phrase) {}
virtual void add_to_history(const std::string&) {}
};
extern std::string sdcv_readline;