From 3050b987eebb9137e0c1ed5dd70824b42b452a93 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Thu, 18 Aug 2022 11:52:42 -0700 Subject: [PATCH] Fix coverity warning about unitialized value --- include/core/minoptmax.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/core/minoptmax.h b/include/core/minoptmax.h index e687fed4d8..dc65eeb259 100644 --- a/include/core/minoptmax.h +++ b/include/core/minoptmax.h @@ -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{};