[Cmake-commits] CMake branch, next, updated. v3.2.2-2151-g2644fb5
Stephen Kelly
steveire at gmail.com
Sun Apr 26 13:23:03 EDT 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 2644fb519e3a4ceb3c7c4c49c9d622935a824a28 (commit)
via 1f81a0851d55f72738b3c5017084cdb36639d6cb (commit)
from 917db9c4c4eaa791db8861de2ace7f3263c80f0a (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=2644fb519e3a4ceb3c7c4c49c9d622935a824a28
commit 2644fb519e3a4ceb3c7c4c49c9d622935a824a28
Merge: 917db9c 1f81a08
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Apr 26 13:23:02 2015 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Apr 26 13:23:02 2015 -0400
Merge topic 'refactor-cmDefinitions' into next
1f81a085 Fix width
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1f81a0851d55f72738b3c5017084cdb36639d6cb
commit 1f81a0851d55f72738b3c5017084cdb36639d6cb
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Apr 26 19:22:18 2015 +0200
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Apr 26 19:22:41 2015 +0200
Fix width
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index a124105..1ea4e52 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -59,7 +59,8 @@ public:
void InitializeDefinitions(cmMakefile* parent)
{
std::vector<cmDefinitions const*> defPtrs;
- for (std::vector<cmDefinitions>::iterator it = parent->Internal->VarStack.begin();
+ for (std::vector<cmDefinitions>::iterator it =
+ parent->Internal->VarStack.begin();
it != parent->Internal->VarStack.end(); ++it)
{
defPtrs.push_back(&*it);
-----------------------------------------------------------------------
Summary of changes:
Source/cmMakefile.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list