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

View File

@@ -129,7 +129,7 @@ public:
// search the attribute list for an object of the specified type
cmXCodeObject* GetObject(cmXCodeObject::PBXType t) const
{
for (auto o : this->List) {
for (auto* o : this->List) {
if (o->IsA == t) {
return o;
}