changed int operator! to bool operator!

This commit is contained in:
hyung-hwan 2014-12-31 16:29:52 +00:00
parent 53a3366e7f
commit 91e4e06318

View File

@ -85,7 +85,7 @@ public:
return this->_ptr;
}
int operator! () const
bool operator! () const
{
return this->_ptr == (T*)QSE_NULL;
}