mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 04:58:21 +00:00
Deprecate FuncType::ArgTypes(), replace with ParamList()
This commit is contained in:
parent
40153cc5cb
commit
83f1a911d7
10 changed files with 21 additions and 15 deletions
|
@ -336,7 +336,7 @@ bool Manager::CreateEventStream(RecordVal* fval)
|
|||
return false;
|
||||
}
|
||||
|
||||
const auto& args = etype->ArgTypes()->Types();
|
||||
const auto& args = etype->ParamList()->Types();
|
||||
|
||||
if ( args.size() < 2 )
|
||||
{
|
||||
|
@ -564,7 +564,7 @@ bool Manager::CreateTableStream(RecordVal* fval)
|
|||
return false;
|
||||
}
|
||||
|
||||
const auto& args = etype->ArgTypes()->Types();
|
||||
const auto& args = etype->ParamList()->Types();
|
||||
|
||||
if ( args.size() != 4 )
|
||||
{
|
||||
|
@ -711,7 +711,7 @@ bool Manager::CheckErrorEventTypes(const std::string& stream_name, const Func* e
|
|||
return false;
|
||||
}
|
||||
|
||||
const auto& args = etype->ArgTypes()->Types();
|
||||
const auto& args = etype->ParamList()->Types();
|
||||
|
||||
if ( args.size() != 3 )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue