Coding style fixes

This commit is contained in:
Felipe Zimmerle
2017-11-13 14:22:17 -03:00
parent 023e7acbad
commit 3fb71f32d8
40 changed files with 591 additions and 662 deletions

View File

@@ -19,6 +19,7 @@
#include <iostream>
#include <memory>
#include <list>
#include <utility>
#endif
#include "modsecurity/variable_origin.h"
@@ -51,7 +52,7 @@ class Variable {
m_key(""),
m_value("") { }
Variable(const Variable *o) :
explicit Variable(const Variable *o) :
m_key(""),
m_value("") {
m_key.assign(o->m_key);