Fix the init method signature in some operators

This commit is contained in:
Felipe Zimmerle
2015-10-20 13:23:08 -03:00
parent 4a5e6b3e57
commit 90c74beca1
6 changed files with 9 additions and 8 deletions

View File

@@ -37,9 +37,9 @@ class Pm : public Operator {
~Pm();
void replaceAll(std::string str, const std::string& from,
const std::string& to);
bool evaluate(Assay *assay, const std::string &input);
bool evaluate(Assay *assay, const std::string &input) override;
virtual bool init(const char **error);
virtual bool init(const std::string &file, const char **error) override;
void postOrderTraversal(acmp_btree_node_t *node);
std::list<std::string> matched;