mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 11:16:33 +03:00
Eliminate some reorder and sign warnings
This commit is contained in:
committed by
Felipe Zimmerle
parent
4909713991
commit
495b47d8a2
@@ -39,21 +39,21 @@ namespace actions {
|
||||
class Action {
|
||||
public:
|
||||
explicit Action(const std::string& _action)
|
||||
: action_kind(2),
|
||||
m_isNone(false),
|
||||
: m_isNone(false),
|
||||
temporaryAction(false),
|
||||
action_kind(2),
|
||||
m_name(""),
|
||||
m_referenceCount(1),
|
||||
m_parser_payload(""),
|
||||
temporaryAction(false) {
|
||||
m_referenceCount(1) {
|
||||
set_name_and_payload(_action);
|
||||
}
|
||||
explicit Action(const std::string& _action, int kind)
|
||||
: action_kind(kind),
|
||||
m_isNone(false),
|
||||
: m_isNone(false),
|
||||
temporaryAction(false),
|
||||
action_kind(kind),
|
||||
m_name(""),
|
||||
m_referenceCount(1),
|
||||
m_parser_payload(""),
|
||||
temporaryAction(false) {
|
||||
m_referenceCount(1) {
|
||||
set_name_and_payload(_action);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user