workaround sun pro problem again

This commit is contained in:
Jeff Hill
2002-05-09 18:53:19 +00:00
parent e788adc650
commit c32e538936
+5 -1
View File
@@ -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 {