clang-tidy: fix modernize-use-auto lints

This commit is contained in:
Ben Boeckel
2023-07-26 15:35:52 -04:00
parent 07ac0c0ae0
commit f5056d28c5
4 changed files with 32 additions and 32 deletions
+1 -1
View File
@@ -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);
}