mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 19:48:20 +00:00
Deprecate TypeList::PureType(), replace with TypeList::GetPureType()
This commit is contained in:
parent
9ab7150883
commit
011866a908
8 changed files with 21 additions and 14 deletions
|
@ -146,7 +146,7 @@ bool Value::IsCompatibleType(BroType* t, bool atomic_only)
|
|||
if ( ! t->IsSet() )
|
||||
return false;
|
||||
|
||||
return IsCompatibleType(t->AsSetType()->Indices()->PureType(), true);
|
||||
return IsCompatibleType(t->AsSetType()->Indices()->GetPureType().get(), true);
|
||||
}
|
||||
|
||||
case TYPE_VECTOR:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue