mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Deprecate VectorVal::Lookup(), replace with At()
This commit is contained in:
parent
69533bcbc6
commit
a384bb8b81
16 changed files with 74 additions and 69 deletions
|
@ -1033,7 +1033,7 @@ threading::Value* Manager::ValToLogVal(Val* val, BroType* ty)
|
|||
for ( int i = 0; i < lval->val.vector_val.size; i++ )
|
||||
{
|
||||
lval->val.vector_val.vals[i] =
|
||||
ValToLogVal(vec->Lookup(i),
|
||||
ValToLogVal(vec->At(i).get(),
|
||||
vec->GetType()->Yield().get());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue