File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
v3.0.x - YYYY-MMM-DD (To be released)
2
2
-------------------------------------
3
3
4
+ - Fix a set of compilation warnings
5
+ [Issue #1650 - @zimmerle, @JayCase]
4
6
- Check for disruptive action on SecDefaultAction.
5
7
[Issue #1614 - @zimmerle, @michaelgranzow-avi]
6
8
- Fix block-block infinite loop.
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class Rule {
50
50
std::string fileName,
51
51
int lineNumber);
52
52
explicit Rule (std::string marker);
53
- ~Rule ();
53
+ virtual ~Rule ();
54
54
55
55
virtual bool evaluate (Transaction *transaction,
56
56
std::shared_ptr<RuleMessage> rm);
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ class Rx : public Operator {
60
60
const std::string& input,
61
61
std::shared_ptr<RuleMessage> ruleMessage) override ;
62
62
63
- bool init (const std::string &arg, std::string *error);
63
+ bool init (const std::string &arg, std::string *error) override ;
64
64
65
65
private:
66
66
Regex *m_re;
You can’t perform that action at this time.
0 commit comments