mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
migrate to differentiated vector "At" accessors to support future efficiency
This commit is contained in:
parent
bc4a6c0d07
commit
0118b6ee38
15 changed files with 91 additions and 89 deletions
|
@ -972,7 +972,7 @@ broker::expected<broker::data> val_to_data(const Val* v)
|
|||
|
||||
for ( auto i = 0u; i < vec->Size(); ++i )
|
||||
{
|
||||
const auto& item_val = vec->At(i);
|
||||
auto item_val = vec->ValAt(i);
|
||||
|
||||
if ( ! item_val )
|
||||
continue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue