Fix: Added missing virtual destructors for classes with virtual functions.

This commit is contained in:
bank 2014-05-01 13:22:13 +04:00
parent 68b12981ae
commit e7fb6a54de
6 changed files with 9 additions and 0 deletions

View file

@ -430,6 +430,8 @@ public:
class BasePrimitive
{
public:
virtual ~BasePrimitive() { }
/// Return true if the element is a geometric primitive type
static bool isPrimitive(const daeElement* element)
{