Cosmetics: Fix static analysis warnings

This commit is contained in:
Felipe Zimmerle
2015-10-27 10:54:57 -03:00
parent 11a1045f47
commit 7afc07914f
14 changed files with 39 additions and 30 deletions

View File

@@ -33,7 +33,8 @@ namespace actions {
class RuleId : public Action {
public:
explicit RuleId(std::string action)
: Action(action, ConfigurationKind) { }
: Action(action, ConfigurationKind),
m_ruleId(0) { }
bool init(std::string *error) override;
bool evaluate(Rule *rule, Assay *assay) override;