[Cmake-commits] CMake branch, next, updated. v3.2.0-rc2-682-g62e71ca
Brad King
brad.king at kitware.com
Tue Feb 24 09:16:20 EST 2015
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 62e71cadfed6f49104496c1dff176935f7fad6bd (commit)
via 740892f979bdd5809fb18f3f529ad908bbebe5d4 (commit)
from 99e58d5e35fef0bd797e0674e3be7ef26eb6da6b (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=62e71cadfed6f49104496c1dff176935f7fad6bd
commit 62e71cadfed6f49104496c1dff176935f7fad6bd
Merge: 99e58d5 740892f
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Feb 24 09:16:19 2015 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Feb 24 09:16:19 2015 -0500
Merge topic 'cleanup-cmAlgorithms' into next
740892f9 fixup! cmAlgorithms: Add a size() to cmRange.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=740892f979bdd5809fb18f3f529ad908bbebe5d4
commit 740892f979bdd5809fb18f3f529ad908bbebe5d4
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Feb 24 09:15:40 2015 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Feb 24 09:15:40 2015 -0500
fixup! cmAlgorithms: Add a size() to cmRange.
diff --git a/Source/cmAlgorithms.h b/Source/cmAlgorithms.h
index 540ad39..b9d7e78 100644
--- a/Source/cmAlgorithms.h
+++ b/Source/cmAlgorithms.h
@@ -127,7 +127,8 @@ struct Range
{
typedef const_iterator_ const_iterator;
typedef typename std::iterator_traits<const_iterator>::value_type value_type;
- typedef typename std::iterator_traits<const_iterator>::difference_type difference_type;
+ typedef typename std::iterator_traits<const_iterator>::difference_type
+ difference_type;
Range(const_iterator begin_, const_iterator end_)
: Begin(begin_), End(end_) {}
const_iterator begin() const { return Begin; }
-----------------------------------------------------------------------
Summary of changes:
Source/cmAlgorithms.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list