summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a6
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/client.h4
2 files changed, 7 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index 41bb2200f49..fbdacca2073 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Fri Jun 22 01:07:02 2001 Krishnakumar B <kitty@cs.wustl.edu>
+
+ * performance-tests/Cubit/TAO/MT_Cubit/client.h (MT_Priority):
+
+ Made the destructor virtual to fix warning under gcc-3.0.
+
Thu Jun 21 21:31:59 2001 Ossama Othman <ossama@uci.edu>
* utils/nslist/nslist.cpp:
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.h b/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.h
index c8bf597937f..263c3474e42 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.h
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/client.h
@@ -48,7 +48,7 @@ public:
Client_i (void);
//constructor.
- ~Client_i (void);
+ virtual ~Client_i (void);
// destructor.
int init (int argc, char *argv[]);
@@ -181,5 +181,3 @@ private:
ACE_Profile_Timer::Rusage usage;
#endif /* (defined (ACE_HAS_PRUSAGE_T) || defined (ACE_HAS_GETRUSAGE)) && !defined (ACE_WIN32) */
};
-
-