Browse Source

Use smaller data type for TriStateBool

adaptive-webui-19844
Chocobo1 7 years ago
parent
commit
d143929454
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  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