mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 13:26:01 +03:00
Remove unused ConfigDouble class
This commit is contained in:
parent
8d15991fb4
commit
abed778b4a
@ -196,22 +196,6 @@ protected:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
class ConfigDouble {
|
|
||||||
public:
|
|
||||||
bool m_set = false;
|
|
||||||
double m_value = 0.0;
|
|
||||||
ConfigDouble() = default;
|
|
||||||
|
|
||||||
void merge(const ConfigDouble *from) {
|
|
||||||
if (m_set == true || from->m_set == false) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
m_set = true;
|
|
||||||
m_value = from->m_value;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
class ConfigString {
|
class ConfigString {
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user