[Cmake-commits] CMake branch, next, updated. v2.8.12.2-1841-g731824f

Brad King brad.king at kitware.com
Fri Feb 28 09:22:18 EST 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  731824fdb6b491554ec16f4544e221060748d75c (commit)
       via  1c4469768e44f03521d28aa53d473344e4189acd (commit)
      from  3540ab2fe3e07fa075fefca6f556d49a7df546cc (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=731824fdb6b491554ec16f4544e221060748d75c
commit 731824fdb6b491554ec16f4544e221060748d75c
Merge: 3540ab2 1c44697
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Feb 28 09:22:17 2014 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Feb 28 09:22:17 2014 -0500

    Merge topic 'no_gcov_error_msg' into next
    
    1c446976 cmCTestCoverageHandler: Simplify empty-string test


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1c4469768e44f03521d28aa53d473344e4189acd
commit 1c4469768e44f03521d28aa53d473344e4189acd
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Feb 28 09:21:05 2014 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Feb 28 09:21:05 2014 -0500

    cmCTestCoverageHandler: Simplify empty-string test

diff --git a/Source/CTest/cmCTestCoverageHandler.cxx b/Source/CTest/cmCTestCoverageHandler.cxx
index 5292ece..0503d94 100644
--- a/Source/CTest/cmCTestCoverageHandler.cxx
+++ b/Source/CTest/cmCTestCoverageHandler.cxx
@@ -871,7 +871,7 @@ int cmCTestCoverageHandler::HandleGCovCoverage(
 {
   std::string gcovCommand
     = this->CTest->GetCTestConfiguration("CoverageCommand");
-  if (gcovCommand.size() == 0)
+  if (gcovCommand.empty())
     {
     cmCTestLog(this->CTest, ERROR_MESSAGE,
       "Could not find gcov." << std::endl);

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

Summary of changes:
 Source/CTest/cmCTestCoverageHandler.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list