CToken: Make operator bool explicit

Prevents potential error-prone conversions from occurring
This commit is contained in:
Lioncash 2020-03-06 21:42:03 -05:00
parent 4daa8ac374
commit a6367c0688
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class CToken {
public:
/* 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 Lock();
bool IsLocked() const { return x4_lockHeld; }