[Cmake-commits] CMake branch, next, updated. v2.8.8-2712-g198bb9d

Bill Hoffman bill.hoffman at kitware.com
Thu Apr 26 08:31:03 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  198bb9d1e7702cf4a22d9e65aeda1ec83ad6e92f (commit)
       via  dd07161c512e8d520da51f8bb82a65ec29aa57ba (commit)
      from  08118430d645ef0f8bb9f4429cee534b0fcb2a71 (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=198bb9d1e7702cf4a22d9e65aeda1ec83ad6e92f
commit 198bb9d1e7702cf4a22d9e65aeda1ec83ad6e92f
Merge: 0811843 dd07161
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Thu Apr 26 08:31:01 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Apr 26 08:31:01 2012 -0400

    Merge topic 'mumps_coverage' into next
    
    dd07161 Fix warning about char* instead of const char*.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=dd07161c512e8d520da51f8bb82a65ec29aa57ba
commit dd07161c512e8d520da51f8bb82a65ec29aa57ba
Author:     Bill Hoffman <bill.hoffman at kitware.com>
AuthorDate: Thu Apr 26 08:30:13 2012 -0400
Commit:     Bill Hoffman <bill.hoffman at kitware.com>
CommitDate: Thu Apr 26 08:30:13 2012 -0400

    Fix warning about char* instead of const char*.

diff --git a/Source/CTest/cmParseGTMCoverage.cxx b/Source/CTest/cmParseGTMCoverage.cxx
index 16e0f61..130e40e 100644
--- a/Source/CTest/cmParseGTMCoverage.cxx
+++ b/Source/CTest/cmParseGTMCoverage.cxx
@@ -351,7 +351,7 @@ bool cmParseGTMCoverage::ReadMCovFile(const char* file)
     else
       {
       // try some alternate names
-      char* tryname[] = {"GUX", "GTM", "ONT", 0};
+      const char* tryname[] = {"GUX", "GTM", "ONT", 0};
       for(int k=0; tryname[k] != 0; k++)
         {
         std::string routine2 = routine + tryname[k];

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list