Cosmetics: avoid compilation warnings

This commit is contained in:
Felipe Zimmerle 2016-07-29 11:29:24 -03:00
parent 5febc7b26d
commit 665df04516
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ class Severity : public Action {
bool evaluate(Rule *rule, Transaction *transaction,
RuleMessage *rm) override;
bool init(std::string *error);
bool init(std::string *error) override;
int m_severity;
};

View File

@ -35,7 +35,7 @@ class XmlNS : public Action {
return true;
}
bool init(std::string *error);
bool init(std::string *error) override;
std::string m_scope;
std::string m_href;