[Cmake-commits] CMake branch, next, updated. v2.8.11.2-4383-g8f1e318

Patrick Reynolds patrick.reynolds at kitware.com
Mon Sep 30 22:54:21 EDT 2013


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  8f1e31821673570e3ac3297eb07b83afaeacb091 (commit)
       via  df9aaf5be89ebf601d1ea4096cdf6d89a01ee71f (commit)
      from  ec3a3610ecf97dd539f695b97cf7483d6ff4f208 (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=8f1e31821673570e3ac3297eb07b83afaeacb091
commit 8f1e31821673570e3ac3297eb07b83afaeacb091
Merge: ec3a361 df9aaf5
Author:     Patrick Reynolds <patrick.reynolds at kitware.com>
AuthorDate: Mon Sep 30 22:54:18 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Sep 30 22:54:18 2013 -0400

    Merge topic 'Add-coverage.py-Coverage' into next
    
    df9aaf5 Fixing an unused parameter warning.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=df9aaf5be89ebf601d1ea4096cdf6d89a01ee71f
commit df9aaf5be89ebf601d1ea4096cdf6d89a01ee71f
Author:     Patrick Reynolds <patrick.reynolds at kitware.com>
AuthorDate: Mon Sep 30 22:53:03 2013 -0400
Commit:     Patrick Reynolds <patrick.reynolds at kitware.com>
CommitDate: Mon Sep 30 22:53:03 2013 -0400

    Fixing an unused parameter warning.

diff --git a/Source/CTest/cmParsePythonCoverage.cxx b/Source/CTest/cmParsePythonCoverage.cxx
index 49432ed..ff5cb0c 100644
--- a/Source/CTest/cmParsePythonCoverage.cxx
+++ b/Source/CTest/cmParsePythonCoverage.cxx
@@ -85,7 +85,10 @@ protected:
     }
   }
 
-  virtual void EndElement(const char* name) {}
+  virtual void EndElement(const char* name)
+  {
+    (void) name;
+  }
 
 private:
 

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list