From 3761af7cd2a8c786ed113326a3f603d89f8a6b11 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 22 Jan 2001 23:16:57 +0000 Subject: [PATCH] fixed gnu warnings introduced by prev change --- src/ca/iocinf.h | 6 +++--- src/libCom/misc/ipAddrToAsciiAsynchronous.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ca/iocinf.h b/src/ca/iocinf.h index 793e499b7..1a7286d5a 100644 --- a/src/ca/iocinf.h +++ b/src/ca/iocinf.h @@ -906,7 +906,7 @@ private: class recvProcessThread : public epicsThreadRunable { public: recvProcessThread ( class cac *pcacIn ); - ~recvProcessThread (); + virtual ~recvProcessThread (); void run (); void signalShutDown (); void enable (); @@ -936,7 +936,7 @@ private: class sendProcessThread : public epicsThreadRunable { public: sendProcessThread ( class cac &cacIn ); - ~sendProcessThread (); + virtual ~sendProcessThread (); void run (); void signalShutDown (); void signalActivity (); @@ -966,7 +966,7 @@ private: void exceptionNotify ( int status, const char *pContext, unsigned type, unsigned long count ); void lock () const; void unlock () const; - ~syncGroupNotify (); // allocate only from pool + virtual ~syncGroupNotify (); // allocate only from pool struct CASG &sg; unsigned magic; diff --git a/src/libCom/misc/ipAddrToAsciiAsynchronous.h b/src/libCom/misc/ipAddrToAsciiAsynchronous.h index 768ed65db..743b11739 100644 --- a/src/libCom/misc/ipAddrToAsciiAsynchronous.h +++ b/src/libCom/misc/ipAddrToAsciiAsynchronous.h @@ -31,8 +31,8 @@ class ipAddrToAsciiAsynchronous; class ipAddrToAsciiEngine : public epicsThreadRunable { public: epicsShareFunc ipAddrToAsciiEngine ( const char *pName ); - epicsShareFunc ~ipAddrToAsciiEngine (); - virtual void run(); + virtual epicsShareFunc ~ipAddrToAsciiEngine (); + virtual void run (); epicsShareFunc void show ( unsigned level ) const; private: epicsThread &thread;