mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Bitset: Make bool() operator explicit.
This commit is contained in:
@ -75,7 +75,7 @@ public:
|
||||
|
||||
void SetLevel(LogTypes::LOG_LEVELS level) { m_level = level; }
|
||||
|
||||
bool HasListeners() const { return m_listener_ids; }
|
||||
bool HasListeners() const { return bool(m_listener_ids); }
|
||||
|
||||
typedef class BitSet32::Iterator iterator;
|
||||
iterator begin() const { return m_listener_ids.begin(); }
|
||||
|
Reference in New Issue
Block a user