From: Michal 'vorner' Vaner Date: Fri, 15 Jun 2012 12:59:12 +0000 (+0200) Subject: Fix compilation X-Git-Tag: trac2351_base~97^2~9^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0a4607b2a469aa91bc60ccfab2212eb10a96c5a2;p=thirdparty%2Fkea.git Fix compilation Buildbot complained that the class has virtual functions, but not a virtual destructor. Adding one. --- diff --git a/src/lib/datasrc/client_list.h b/src/lib/datasrc/client_list.h index 5b3102eeaf..599dca8217 100644 --- a/src/lib/datasrc/client_list.h +++ b/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.