1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-11 07:18:08 +00:00

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