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 ca4da4706a
commit 64acd8bd47
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;