[Cmake-commits] CMake branch, next, updated. v3.3.0-rc4-1311-g4134060
Brad King
brad.king at kitware.com
Thu Jul 23 10:20:48 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 4134060d569f06f7005aca7ed0cf848bbb211728 (commit)
via c515b240dcb4613e9ca70477c8fcb028fbc499f6 (commit)
from 973587f5d9a4575124136d4b36d13ba757989b7e (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=4134060d569f06f7005aca7ed0cf848bbb211728
commit 4134060d569f06f7005aca7ed0cf848bbb211728
Merge: 973587f c515b24
Author: Brad King <brad.king at kitware.com>
AuthorDate: Thu Jul 23 10:20:47 2015 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Jul 23 10:20:47 2015 -0400
Merge topic 'policy-refactor' into next
c515b240 fixup! cmMakefile: Convert recursion to loop.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c515b240dcb4613e9ca70477c8fcb028fbc499f6
commit c515b240dcb4613e9ca70477c8fcb028fbc499f6
Author: Brad King <brad.king at kitware.com>
AuthorDate: Thu Jul 23 10:20:21 2015 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Thu Jul 23 10:20:21 2015 -0400
fixup! cmMakefile: Convert recursion to loop.
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index f0a6199..c5ce2e9 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -4753,7 +4753,7 @@ cmMakefile::GetPolicyStatus(cmPolicies::PolicyID id) const
cmLocalGenerator* lg = this->LocalGenerator;
while(lg)
{
- cmMakefile* mf = lg->GetMakefile();
+ cmMakefile const* mf = lg->GetMakefile();
for(PolicyStackType::const_reverse_iterator psi =
mf->PolicyStack.rbegin(); psi != mf->PolicyStack.rend(); ++psi)
{
-----------------------------------------------------------------------
Summary of changes:
Source/cmMakefile.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list