1
0
Fork 0

virtual destructor missing (in order to silence llvm warning)

This commit is contained in:
Olaf Flebbe 2012-01-09 20:42:55 +01:00 committed by ThorstenB
parent 045912f5a7
commit 0eda5eee81

View file

@ -38,6 +38,7 @@ class PropertySetter {
public:
PropertySetter( SGPropertyNode_ptr node ) : _node(node) {}
virtual void setValue( const char * value ) = 0;
virtual ~PropertySetter() {};
protected:
SGPropertyNode_ptr _node;
};