Skip to content

Commit

Permalink
[lldb][NFC] for-range loop when iterating over delayed_properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Teemperor committed Oct 13, 2021
1 parent 90a6c3c commit 0648b3c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
Expand Up @@ -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();
}
}

Expand Down

0 comments on commit 0648b3c

Please sign in to comment.