diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-23 13:31:18 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2022-11-29 17:39:45 (GMT) |
commit | 1f893e587371cbce2007cae55c118fcf50dca849 (patch) | |
tree | 829c7b8aacad16fe739e0589dbd2f3db1e0e7426 /Source/cmGlobalVisualStudio8Generator.cxx | |
parent | 362d6cd234dd8e83577bb72dcbe22949aa9253bf (diff) | |
download | CMake-1f893e587371cbce2007cae55c118fcf50dca849.zip CMake-1f893e587371cbce2007cae55c118fcf50dca849.tar.gz CMake-1f893e587371cbce2007cae55c118fcf50dca849.tar.bz2 |
clang-tidy: fix `modernize-loop-convert` lints
Diffstat (limited to 'Source/cmGlobalVisualStudio8Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio8Generator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio8Generator.cxx b/Source/cmGlobalVisualStudio8Generator.cxx index 70cb72a..c57649f 100644 --- a/Source/cmGlobalVisualStudio8Generator.cxx +++ b/Source/cmGlobalVisualStudio8Generator.cxx @@ -278,8 +278,8 @@ void cmGlobalVisualStudio8Generator::AddExtraIDETargets() { cmGlobalVisualStudio7Generator::AddExtraIDETargets(); if (this->AddCheckTarget()) { - for (unsigned int i = 0; i < this->LocalGenerators.size(); ++i) { - const auto& tgts = this->LocalGenerators[i]->GetGeneratorTargets(); + for (auto& LocalGenerator : this->LocalGenerators) { + const auto& tgts = LocalGenerator->GetGeneratorTargets(); // All targets depend on the build-system check target. for (const auto& ti : tgts) { if (ti->GetName() != CMAKE_CHECK_BUILD_SYSTEM_TARGET) { |