We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d15991 commit abed778Copy full SHA for abed778
headers/modsecurity/rules_set_properties.h
@@ -196,22 +196,6 @@ class ConfigUnsignedLong : public ConfigValue<uint64_t> {
196
}
197
};
198
199
-class ConfigDouble {
200
- public:
201
- bool m_set = false;
202
- double m_value = 0.0;
203
- ConfigDouble() = default;
204
-
205
- void merge(const ConfigDouble *from) {
206
- if (m_set == true || from->m_set == false) {
207
- return;
208
- }
209
- m_set = true;
210
- m_value = from->m_value;
211
212
213
-};
214
215
216
class ConfigString {
217
public:
0 commit comments