make destructor virtual to eliminate compiler warnings

This commit is contained in:
David Rose 2003-04-09 22:41:29 +00:00
parent 6f7dc609e6
commit 1cb9c2640c
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ operator = (const EggTransform3d &copy) {
////////////////////////////////////////////////////////////////////
// Function: EggTransform3d::Destructor
// Access: Public
// Access: Public, Virtual
// Description:
////////////////////////////////////////////////////////////////////
EggTransform3d::

View File

@ -35,7 +35,7 @@ public:
EggTransform3d();
EggTransform3d(const EggTransform3d &copy);
EggTransform3d &operator = (const EggTransform3d &copy);
~EggTransform3d();
virtual ~EggTransform3d();
INLINE void clear_transform();