We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb70ff0 commit 7e3c807Copy full SHA for 7e3c807
1 file changed
headers/modsecurity/rules_set_properties.h
@@ -88,7 +88,9 @@ class ConfigValue {
88
ConfigValue() = default;
89
90
void merge(const ConfigValue<T>* from) {
91
- if (m_set || !from->m_set) return;
+ if (m_set || !from->m_set) {
92
+ return;
93
+ }
94
m_set = true;
95
m_value = from->m_value;
96
}
0 commit comments