Fix coverity warning about unitialized value

This commit is contained in:
Seth Hillbrand 2022-08-18 11:52:42 -07:00
parent 84745a6cdc
commit 3050b987ee
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public:
bool IsNull() const { return m_isNull; }
private:
bool m_isNull;
bool m_isNull = true;
T m_min{};
T m_opt{};
T m_max{};