diff --git a/src/base/tristatebool.h b/src/base/tristatebool.h index a75d1d09c..62821e30d 100644 --- a/src/base/tristatebool.h +++ b/src/base/tristatebool.h @@ -47,7 +47,7 @@ public: bool operator!=(const TriStateBool &other) const; private: - int m_value = -1; // Undefined by default + signed char m_value = -1; // Undefined by default }; #endif // TRISTATEBOOL_H