[Cmake-commits] CMake branch, next, updated. v2.8.12-4503-g92a59dc
Nils Gladitz
nilsgladitz at gmail.com
Fri Oct 25 12:55:15 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 92a59dc8e76db94f545ade7ec3fd655e63cfef37 (commit)
via 8b8488afef1828108e480bf0f37ffe2a2d2e54a4 (commit)
from 6d3a61a1db71c4bf9a2c962ad26557beb06ecaed (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=92a59dc8e76db94f545ade7ec3fd655e63cfef37
commit 92a59dc8e76db94f545ade7ec3fd655e63cfef37
Merge: 6d3a61a 8b8488a
Author: Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Fri Oct 25 12:55:13 2013 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Oct 25 12:55:13 2013 -0400
Merge topic 'ctest-fix-run-serial' into next
8b8488a CTest: fix const reference
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8b8488afef1828108e480bf0f37ffe2a2d2e54a4
commit 8b8488afef1828108e480bf0f37ffe2a2d2e54a4
Author: Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Fri Oct 25 18:54:41 2013 +0200
Commit: Nils Gladitz <nilsgladitz at gmail.com>
CommitDate: Fri Oct 25 18:54:41 2013 +0200
CTest: fix const reference
diff --git a/Source/CTest/cmCTestMultiProcessHandler.cxx b/Source/CTest/cmCTestMultiProcessHandler.cxx
index 6572953..5ca2ee9 100644
--- a/Source/CTest/cmCTestMultiProcessHandler.cxx
+++ b/Source/CTest/cmCTestMultiProcessHandler.cxx
@@ -496,7 +496,7 @@ void cmCTestMultiProcessHandler::CreateTestCostList()
for(std::list<TestSet>::const_reverse_iterator i = priorityStack.rbegin();
i != priorityStack.rend(); ++i)
{
- TestSet ¤tSet = *i;
+ TestSet const& currentSet = *i;
TestComparator comp(this);
TestList sortedCopy;
-----------------------------------------------------------------------
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