mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 17:48:21 +00:00
Deprecate ID::Type(), replace with GetType()
This commit is contained in:
parent
6e647416d5
commit
3f07c57523
24 changed files with 111 additions and 106 deletions
|
@ -44,10 +44,10 @@ FuncType* EventHandler::FType(bool check_export)
|
|||
if ( ! id )
|
||||
return nullptr;
|
||||
|
||||
if ( id->Type()->Tag() != TYPE_FUNC )
|
||||
if ( id->GetType()->Tag() != TYPE_FUNC )
|
||||
return nullptr;
|
||||
|
||||
type = id->Type()->AsFuncType();
|
||||
type = id->GetType()->AsFuncType();
|
||||
return type;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue