mirror of
https://github.com/vtil-project/VTIL-Core
synced 2026-08-17 08:23:03 -04:00
Switch to pre-inc iteration.
This commit is contained in:
parent
5c762cecd1
commit
fe695f3d69
1 changed files with 1 additions and 1 deletions
|
|
@ -87,7 +87,7 @@ namespace vtil::format
|
|||
std::vector<std::array<std::string, field_count>> string_entries;
|
||||
string_entries.reserve( entry_count );
|
||||
|
||||
for ( auto eit = std::begin( data_source ); eit != std::end( data_source ); eit++ )
|
||||
for ( auto eit = std::begin( data_source ); eit != std::end( data_source ); ++eit )
|
||||
{
|
||||
auto& output = string_entries.emplace_back();
|
||||
make_constant_series<field_count>( [ & ] ( auto tag )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue