From: Bert Hubert Date: Thu, 7 Mar 2013 11:14:21 +0000 (+0000) Subject: and add a destructor too - sorry for not doing a good test build! X-Git-Tag: rec-3.5-rc3~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1917360fe4554737e3f0617fe01c44a98ea6afae;p=thirdparty%2Fpdns.git and add a destructor too - sorry for not doing a good test build! git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@3115 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- diff --git a/modules/pipebackend/coprocess.hh b/modules/pipebackend/coprocess.hh index 188ced1d74..198827f1e2 100644 --- a/modules/pipebackend/coprocess.hh +++ b/modules/pipebackend/coprocess.hh @@ -10,7 +10,7 @@ class CoRemote { public: - virtual ~CoRemote(); + virtual ~CoRemote() {} virtual void sendReceive(const string &send, string &receive) = 0; virtual void receive(string &rcv) = 0; virtual void send(const string &send) = 0;