diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-26 19:35:52 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 22:35:52 (GMT) |
commit | f5056d28c56155ca1ba137bff30255f42a74f70a (patch) | |
tree | 23ec992182f07e08dd3fb333a2bc102443bba4a1 /Source/cmXCodeObject.cxx | |
parent | 07ac0c0ae0bcd7231b6c834303531c313af28090 (diff) | |
download | CMake-f5056d28c56155ca1ba137bff30255f42a74f70a.zip CMake-f5056d28c56155ca1ba137bff30255f42a74f70a.tar.gz CMake-f5056d28c56155ca1ba137bff30255f42a74f70a.tar.bz2 |
clang-tidy: fix `modernize-use-auto` lints
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r-- | Source/cmXCodeObject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx index c817980..73f0992 100644 --- a/Source/cmXCodeObject.cxx +++ b/Source/cmXCodeObject.cxx @@ -180,7 +180,7 @@ void cmXCodeObject::PrintList(std::vector<cmXCodeObject*> const& objs, { cmXCodeObject::Indent(1, out); out << "objects = {\n"; - for (auto obj : objs) { + for (auto* obj : objs) { if (obj->TypeValue == OBJECT) { obj->Print(out); } |