Fix coverity warning about unitialized value
This commit is contained in:
parent
84745a6cdc
commit
3050b987ee
|
@ -45,7 +45,7 @@ public:
|
||||||
bool IsNull() const { return m_isNull; }
|
bool IsNull() const { return m_isNull; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool m_isNull;
|
bool m_isNull = true;
|
||||||
T m_min{};
|
T m_min{};
|
||||||
T m_opt{};
|
T m_opt{};
|
||||||
T m_max{};
|
T m_max{};
|
||||||
|
|
Loading…
Reference in New Issue