mirror of
https://github.com/AxioDL/boo.git
synced 2025-07-06 05:05:52 +00:00
Merge pull request #23 from lioncash/explicit
BooObject: Make ObjToken operator bool explicit
This commit is contained in:
commit
6be2f7520e
@ -69,7 +69,7 @@ public:
|
|||||||
T* cast() const noexcept {
|
T* cast() const noexcept {
|
||||||
return static_cast<T*>(m_obj);
|
return static_cast<T*>(m_obj);
|
||||||
}
|
}
|
||||||
operator bool() const noexcept { return m_obj != nullptr; }
|
explicit operator bool() const noexcept { return m_obj != nullptr; }
|
||||||
void reset() noexcept {
|
void reset() noexcept {
|
||||||
if (m_obj)
|
if (m_obj)
|
||||||
m_obj->decrement();
|
m_obj->decrement();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user