[Cmake-commits] CMake branch, next, updated. v3.0.0-rc5-3148-g5ca7b37

Joe Snyder joe.snyder at kitware.com
Thu May 15 10:55:45 EDT 2014


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  5ca7b3792b74f2fbaa6369dd34acfe4a6c2d8d04 (commit)
       via  bf3d558dce249cac0a1e2bbd7ea0a2320e02a942 (commit)
      from  5e67fa29d5a7d77524abcbba8168c8297f52d8d2 (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=5ca7b3792b74f2fbaa6369dd34acfe4a6c2d8d04
commit 5ca7b3792b74f2fbaa6369dd34acfe4a6c2d8d04
Merge: 5e67fa2 bf3d558
Author:     Joe Snyder <joe.snyder at kitware.com>
AuthorDate: Thu May 15 10:55:44 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu May 15 10:55:44 2014 -0400

    Merge topic 'fix_mumps_coverage' into next
    
    bf3d558d CTEST: Remove clear functions from GTM Coverage


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=bf3d558dce249cac0a1e2bbd7ea0a2320e02a942
commit bf3d558dce249cac0a1e2bbd7ea0a2320e02a942
Author:     Joseph Snyder <joe.snyder at kitware.com>
AuthorDate: Thu May 15 10:52:47 2014 -0400
Commit:     Joseph Snyder <joe.snyder at kitware.com>
CommitDate: Thu May 15 10:52:47 2014 -0400

    CTEST: Remove clear functions from GTM Coverage
    
    Remove the calls to the "clear" function and replace with setting the
    variables equals to an empty string.

diff --git a/Source/CTest/cmParseGTMCoverage.cxx b/Source/CTest/cmParseGTMCoverage.cxx
index 5c5aaae..be10c2e 100644
--- a/Source/CTest/cmParseGTMCoverage.cxx
+++ b/Source/CTest/cmParseGTMCoverage.cxx
@@ -276,8 +276,8 @@ bool cmParseGTMCoverage::ParseMCOVLine(std::string const& line,
     // To avoid double counting of line 0 of each entry point,
     // Don't count the lines that do not give an explicit line
     // number.
-    routine.clear();
-    function.clear();
+    routine="";
+    function="";
     }
   else
     {

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list