fixed gnu warnings introduced by prev change

This commit is contained in:
Jeff Hill
2001-01-22 23:16:57 +00:00
parent abe1bc9e98
commit 3761af7cd2
2 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -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;
+2 -2
View File
@@ -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;