mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-13 06:34:42 -04:00
Switch to C++11 for Kaitai-generated parsers
This commit is contained in:
parent
255742f371
commit
75bf036137
15 changed files with 316 additions and 745 deletions
|
@ -125,7 +125,7 @@ USTATUS NvramParser::parseNvarStore(const UModelIndex & index)
|
|||
UModelIndex prevEntryIndex;
|
||||
if (currentEntryIndex > 0) {
|
||||
for (UINT32 i = currentEntryIndex - 1; i > 0; i--) {
|
||||
const auto previousEntry = parsed.entries()->at(i);
|
||||
const auto & previousEntry = parsed.entries()->at(i);
|
||||
|
||||
if (previousEntry == entry)
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue