Throw in default initializers for MINOPTMAX to silence coverity

This commit is contained in:
Marek Roszko 2022-08-16 23:47:56 -04:00
parent 98b3904c51
commit e67a4c6274
1 changed files with 3 additions and 3 deletions

View File

@ -46,9 +46,9 @@ public:
private:
bool m_isNull;
T m_min;
T m_opt;
T m_max;
T m_min{};
T m_opt{};
T m_max{};
bool m_hasMin = false;
bool m_hasOpt = false;
bool m_hasMax = false;