base: fix a very theoretical performance problem
[vuplus_dvbapp] / lib / base / smartptr.h
index f9d224b..814d745 100644 (file)
@@ -56,6 +56,8 @@ public:
        T* &ptrref() { assert(!ptr); return ptr; }
        T* operator->() const { assert(ptr); return ptr; }
        operator T*() const { return this->ptr; }
+       
+       operator bool() const { return !!this->ptr; }
 };