mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-06-06 23:13:27 +00:00
CToken: Make operator bool explicit
Prevents potential error-prone conversions from occurring
This commit is contained in:
parent
4daa8ac374
commit
a6367c0688
@ -74,7 +74,7 @@ class CToken {
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
/* Added to test for non-null state */
|
/* Added to test for non-null state */
|
||||||
operator bool() const { return x0_objRef != nullptr; }
|
explicit operator bool() const { return x0_objRef != nullptr; }
|
||||||
void Unlock();
|
void Unlock();
|
||||||
void Lock();
|
void Lock();
|
||||||
bool IsLocked() const { return x4_lockHeld; }
|
bool IsLocked() const { return x4_lockHeld; }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user