From ee60f232c1eb569517d475aa0d709f01437b9fb6 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 16 Apr 2001 23:33:45 +0000 Subject: [PATCH] made destructors virtual --- src/ca/iocinf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/iocinf.h b/src/ca/iocinf.h index 1b5341506..b4e588c61 100644 --- a/src/ca/iocinf.h +++ b/src/ca/iocinf.h @@ -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;