virtual destructor missing (in order to silence llvm warning)
This commit is contained in:
parent
045912f5a7
commit
0eda5eee81
1 changed files with 1 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue