Add virutal destructor to silence warning.

This commit is contained in:
Bill Hoffman 2012-05-01 14:36:18 -04:00
parent 319eeb0247
commit a86cd33cdd
2 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,10 @@ cmParseMumpsCoverage::cmParseMumpsCoverage(
{ {
} }
cmParseMumpsCoverage::~cmParseMumpsCoverage()
{
}
bool cmParseMumpsCoverage::ReadCoverageFile(const char* file) bool cmParseMumpsCoverage::ReadCoverageFile(const char* file)
{ {
// Read the gtm_coverage.mcov file, that has two lines of data: // Read the gtm_coverage.mcov file, that has two lines of data:

View File

@ -27,6 +27,7 @@ class cmParseMumpsCoverage
public: public:
cmParseMumpsCoverage(cmCTestCoverageHandlerContainer& cont, cmParseMumpsCoverage(cmCTestCoverageHandlerContainer& cont,
cmCTest* ctest); cmCTest* ctest);
virtual ~cmParseMumpsCoverage();
// This is the toplevel coverage file locating the coverage files // This is the toplevel coverage file locating the coverage files
// and the mumps source code package tree. // and the mumps source code package tree.
bool ReadCoverageFile(const char* file); bool ReadCoverageFile(const char* file);