Add explicit destructor

Allowing the compiler to create a default destructor confuses gprof, and
causes it to report bad coverage data.
This commit is contained in:
Alistair Riddoch 2012-08-06 18:32:01 +01:00
parent aca35a49dd
commit 1decf884a1
12 changed files with 36 additions and 0 deletions

View file

@ -22,6 +22,10 @@
#include "CommPythonClient.h"
#include "CommServer.h"
CommPythonClientFactory::~CommPythonClientFactory()
{
}
int CommPythonClientFactory::newCommClient(CommServer & svr,
int asockfd,
const std::string & address)