0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 04:38:52 +02:00

ircd::mods: Fix sym_ptr boolean test.

This commit is contained in:
Jason Volk 2018-05-25 22:41:17 -07:00
parent e11973fb40
commit a1e1272d9c

View file

@ -25,7 +25,7 @@ class ircd::mods::sym_ptr
public: public:
bool operator!() const; bool operator!() const;
operator bool() const; explicit operator bool() const;
template<class T> const T *get() const; template<class T> const T *get() const;
template<class T> const T *operator->() const; template<class T> const T *operator->() const;
@ -106,7 +106,7 @@ inline ircd::mods::sym_ptr::operator
bool() bool()
const const
{ {
return !bool(*this); return !operator!();
} }
inline bool inline bool