Merge pull request #7460 from Chocobo1/tribool

Use smaller data type for TriStateBool
This commit is contained in:
Mike Tzou 2017-09-21 20:17:34 +08:00 committed by GitHub
commit fc5d49bf9a

View file

@ -47,7 +47,7 @@ public:
bool operator!=(const TriStateBool &other) const; bool operator!=(const TriStateBool &other) const;
private: private:
int m_value = -1; // Undefined by default signed char m_value = -1; // Undefined by default
}; };
#endif // TRISTATEBOOL_H #endif // TRISTATEBOOL_H