[Cmake-commits] CMake branch, next, updated. v3.6.0-929-g5617062
Brad King
brad.king at kitware.com
Wed Jul 20 13:12:16 EDT 2016
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 5617062f3a26b09b45b1ea1887e746420c4bed20 (commit)
via e263196db9415eaee607a4cbbccd137ae9788635 (commit)
from 91ec400aec135c60e6d22b6c17405a88cc352de9 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5617062f3a26b09b45b1ea1887e746420c4bed20
commit 5617062f3a26b09b45b1ea1887e746420c4bed20
Merge: 91ec400 e263196
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Jul 20 13:12:16 2016 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jul 20 13:12:16 2016 -0400
Merge topic 'ninja-target-deps' into next
e263196d fixup! Ninja: Fix inter-target order-only dependencies of custom commands
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e263196db9415eaee607a4cbbccd137ae9788635
commit e263196db9415eaee607a4cbbccd137ae9788635
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Jul 20 13:10:35 2016 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Wed Jul 20 13:10:35 2016 -0400
fixup! Ninja: Fix inter-target order-only dependencies of custom commands
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx
index a2e0a2e..51175c7 100644
--- a/Source/cmGlobalNinjaGenerator.cxx
+++ b/Source/cmGlobalNinjaGenerator.cxx
@@ -920,7 +920,7 @@ void cmGlobalNinjaGenerator::AppendTargetDependsClosure(
}
std::set<cmGeneratorTarget const*> const& targets = i->second;
cmNinjaDeps outs;
- for (std::set<cmGeneratorTarget const*>::iterator ti = targets.begin();
+ for (std::set<cmGeneratorTarget const*>::const_iterator ti = targets.begin();
ti != targets.end(); ++ti) {
this->AppendTargetOutputs(*ti, outs);
}
-----------------------------------------------------------------------
Summary of changes:
Source/cmGlobalNinjaGenerator.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list