Deprecate TypeList::PureType(), replace with TypeList::GetPureType()

This commit is contained in:
Jon Siwek 2020-05-06 20:58:40 -07:00
parent 9ab7150883
commit 011866a908
8 changed files with 21 additions and 14 deletions

View file

@ -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: