From c32e5389368a09a758ed9bc0550bea7cdb3a1b31 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Thu, 9 May 2002 18:53:19 +0000 Subject: [PATCH] workaround sun pro problem again --- src/ca/netIO.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ca/netIO.h b/src/ca/netIO.h index 78e189d27..0924acdeb 100644 --- a/src/ca/netIO.h +++ b/src/ca/netIO.h @@ -35,7 +35,6 @@ class baseNMIU : public tsDLNode < baseNMIU >, // X aCC 655 public chronIntIdRes < baseNMIU > { public: - virtual ~baseNMIU (); virtual void destroy ( class cacRecycle & ) = 0; // only called by cac virtual void completion () = 0; virtual void exception ( int status, @@ -51,6 +50,11 @@ public: // not fond of the vf overhead to fetch this // virtual nciu & channel () const = 0; +protected: + // SUN PRO generates undefined symbols if this is virtual + // (therefore it is protected) + // virtual + ~baseNMIU (); }; class netSubscription : public baseNMIU {