Add virutal destructor to silence warning.
This commit is contained in:
parent
319eeb0247
commit
a86cd33cdd
|
@ -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:
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue