]> git.mxchange.org Git - flightgear.git/commitdiff
virtual destructor missing (in order to silence llvm warning)
authorOlaf Flebbe <of@oflebbe.de>
Mon, 9 Jan 2012 19:42:55 +0000 (20:42 +0100)
committerThorstenB <brehmt@gmail.com>
Mon, 9 Jan 2012 20:07:18 +0000 (21:07 +0100)
utils/fgpanel/FGPanelProtocol.cxx

index 5f8e0e0e9050558b6a1522c95c414fa83328dcc9..d11c1c61533402cb95fe48b60454b18109828fe9 100644 (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;
 };