Browse Source

Fix compilation

Buildbot complained that the class has virtual functions, but not a
virtual destructor. Adding one.
Michal 'vorner' Vaner 13 years ago
parent
commit
0a4607b2a4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/lib/datasrc/client_list.h

+ 2 - 0
src/lib/datasrc/client_list.h

@@ -55,6 +55,8 @@ protected:
     /// class.
     ClientList() {}
 public:
+    /// \brief Virtual destructor
+    virtual ~ClientList() {}
     /// \brief Structure holding the (compound) result of find.
     ///
     /// As this is read-only structure, we don't bother to create accessors.