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:
commit
fc5d49bf9a
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user