Browse Source

Merge pull request #7460 from Chocobo1/tribool

Use smaller data type for TriStateBool
adaptive-webui-19844
Mike Tzou 7 years ago committed by GitHub
parent
commit
fc5d49bf9a
  1. 2
      src/base/tristatebool.h

2
src/base/tristatebool.h

@ -47,7 +47,7 @@ public: @@ -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

Loading…
Cancel
Save