made destructors virtual

This commit is contained in:
Jeff Hill
2001-04-16 23:33:45 +00:00
parent e73d083131
commit ee60f232c1

View File

@@ -872,7 +872,7 @@ protected:
const unsigned magic;
cacChannel::ioid id;
bool idIsValid;
~syncGroupNotify ();
virtual ~syncGroupNotify ();
};
class syncGroupReadNotify : public syncGroupNotify, public cacDataNotify {
@@ -940,7 +940,7 @@ public:
void * operator new ( size_t size );
void operator delete ( void *pCadaver, size_t size );
protected:
~CASG ();
virtual ~CASG ();
private:
tsDLList < syncGroupNotify > ioList;
epicsMutex mutable mutex;