[Cmake-commits] CMake branch, next, updated. v2.8.8-2784-g0a1547b

Bill Hoffman bill.hoffman at kitware.com
Tue May 1 14:36:46 EDT 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  0a1547b0f6354c47401e06e361bb24c2041c49f7 (commit)
       via  a86cd33cdd497acdb6b77a44c146a9779730675e (commit)
      from  d6c00d4608a6805f5e89349d69fb725d57b754c5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0a1547b0f6354c47401e06e361bb24c2041c49f7
commit 0a1547b0f6354c47401e06e361bb24c2041c49f7
Merge: d6c00d4 a86cd33
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Tue May 1 14:36:44 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue May 1 14:36:44 2012 -0400

    Merge topic 'mumps_coverage' into next
    
    a86cd33 Add virutal destructor to silence warning.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a86cd33cdd497acdb6b77a44c146a9779730675e
commit a86cd33cdd497acdb6b77a44c146a9779730675e
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Tue May 1 14:36:18 2012 -0400
Commit:     Bill Hoffman <bill.hoffman at kitware.com>
CommitDate: Tue May 1 14:36:18 2012 -0400

    Add virutal destructor to silence warning.

diff --git a/Source/CTest/cmParseMumpsCoverage.cxx b/Source/CTest/cmParseMumpsCoverage.cxx
index 359b5ac..761139f 100644
--- a/Source/CTest/cmParseMumpsCoverage.cxx
+++ b/Source/CTest/cmParseMumpsCoverage.cxx
@@ -14,6 +14,10 @@ cmParseMumpsCoverage::cmParseMumpsCoverage(
 {
 }
 
+cmParseMumpsCoverage::~cmParseMumpsCoverage()
+{
+}
+
 bool cmParseMumpsCoverage::ReadCoverageFile(const char* file)
 {
   // Read the gtm_coverage.mcov file, that has two lines of data:
diff --git a/Source/CTest/cmParseMumpsCoverage.h b/Source/CTest/cmParseMumpsCoverage.h
index 63883de..81180ee 100644
--- a/Source/CTest/cmParseMumpsCoverage.h
+++ b/Source/CTest/cmParseMumpsCoverage.h
@@ -27,6 +27,7 @@ class cmParseMumpsCoverage
 public:
   cmParseMumpsCoverage(cmCTestCoverageHandlerContainer& cont,
     cmCTest* ctest);
+  virtual ~cmParseMumpsCoverage();
   // This is the toplevel coverage file locating the coverage files
   // and the mumps source code package tree.
   bool ReadCoverageFile(const char* file);

-----------------------------------------------------------------------

Summary of changes:
 Source/CTest/cmParseMumpsCoverage.cxx |    4 ++++
 Source/CTest/cmParseMumpsCoverage.h   |    1 +
 2 files changed, 5 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list