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:
|
public:
|
||||||
PropertySetter( SGPropertyNode_ptr node ) : _node(node) {}
|
PropertySetter( SGPropertyNode_ptr node ) : _node(node) {}
|
||||||
virtual void setValue( const char * value ) = 0;
|
virtual void setValue( const char * value ) = 0;
|
||||||
|
virtual ~PropertySetter() {};
|
||||||
protected:
|
protected:
|
||||||
SGPropertyNode_ptr _node;
|
SGPropertyNode_ptr _node;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue