X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fbase%2Fobject.h;h=a3268d4f3851de9357ba3d749891b4829e87b95a;hp=f0e0e9a5aba78c116f0cc112581db27171d7ac3a;hb=879d60c88e24c2c3f2aab9dff73192c901f63f31;hpb=2e0270746af934180499931f95ed91c444c8233e diff --git a/lib/base/object.h b/lib/base/object.h index f0e0e9a..a3268d4 100644 --- a/lib/base/object.h +++ b/lib/base/object.h @@ -17,6 +17,7 @@ private: /* we don't allow the default operator here, as it would break the refcount. */ void operator=(const iObject &); protected: + void operator delete(void *p) { ::operator delete(p); } virtual ~iObject() { } #ifdef SWIG virtual void AddRef()=0;