]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
Fix compilation
authorMichal 'vorner' Vaner <michal.vaner@nic.cz>
Fri, 15 Jun 2012 12:59:12 +0000 (14:59 +0200)
committerMichal 'vorner' Vaner <michal.vaner@nic.cz>
Fri, 15 Jun 2012 12:59:12 +0000 (14:59 +0200)
Buildbot complained that the class has virtual functions, but not a
virtual destructor. Adding one.

src/lib/datasrc/client_list.h

index 5b3102eeafca0fb21dc6b65c83e7b1872e90c4b8..599dca8217e9b12a2eccdc6c183f9e232224726e 100644 (file)
@@ -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.