[lldb][NFC] for-range loop when iterating over delayed_properties

This commit is contained in:
Raphael Isemann 2021-10-13 14:05:25 +02:00
parent 90a6c3c2e4
commit 0648b3c026
1 changed files with 2 additions and 4 deletions

View File

@ -2147,10 +2147,8 @@ bool DWARFASTParserClang::CompleteRecordType(const DWARFDIE &die,
return true;
});
for (DelayedPropertyList::iterator pi = delayed_properties.begin(),
pe = delayed_properties.end();
pi != pe; ++pi)
pi->Finalize();
for (DelayedAddObjCClassProperty &property : delayed_properties)
property.Finalize();
}
}