[Cmake-commits] CMake branch, next, updated. v2.8.12-4507-gcaea7cb

Nils Gladitz nilsgladitz at gmail.com
Fri Oct 25 13:33:58 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  caea7cb64e9f07a5599b626f0b6e253651bd8a15 (commit)
       via  981855cd0ca54944a1e2a45dfddc9335ca8c6548 (commit)
      from  65aa99bf968f24c855008a573c4016a3ff6b7836 (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=caea7cb64e9f07a5599b626f0b6e253651bd8a15
commit caea7cb64e9f07a5599b626f0b6e253651bd8a15
Merge: 65aa99b 981855c
Author:     Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Fri Oct 25 13:33:56 2013 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Oct 25 13:33:56 2013 -0400

    Merge topic 'ctest-fix-run-serial' into next
    
    981855c CTest: bcc55 can not compare const and non-const reverse iterators


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=981855cd0ca54944a1e2a45dfddc9335ca8c6548
commit 981855cd0ca54944a1e2a45dfddc9335ca8c6548
Author:     Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Fri Oct 25 19:33:01 2013 +0200
Commit:     Nils Gladitz <nilsgladitz at gmail.com>
CommitDate: Fri Oct 25 19:33:01 2013 +0200

    CTest: bcc55 can not compare const and non-const reverse iterators

diff --git a/Source/CTest/cmCTestMultiProcessHandler.cxx b/Source/CTest/cmCTestMultiProcessHandler.cxx
index 5ca2ee9..2cae179 100644
--- a/Source/CTest/cmCTestMultiProcessHandler.cxx
+++ b/Source/CTest/cmCTestMultiProcessHandler.cxx
@@ -493,7 +493,7 @@ void cmCTestMultiProcessHandler::CreateTestCostList()
 
   // Reverse iterate over the different dependency levels (deepest first).
   // Sort tests within each level by COST and append them to the cost list.
-  for(std::list<TestSet>::const_reverse_iterator i = priorityStack.rbegin();
+  for(std::list<TestSet>::reverse_iterator i = priorityStack.rbegin();
     i != priorityStack.rend(); ++i)
     {
     TestSet const& currentSet = *i;

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list