mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Mark List::append/insert deprecated in favor of push_back/push_front for consistency with Queue
This commit is contained in:
parent
d2d5043bf0
commit
6144f459e1
39 changed files with 221 additions and 211 deletions
|
@ -1039,7 +1039,7 @@ void Manager::ProcessEvent(const broker::topic& topic, broker::zeek::Event ev)
|
|||
auto val = data_to_val(std::move(args[i]), expected_type);
|
||||
|
||||
if ( val )
|
||||
vl.append(val);
|
||||
vl.push_back(val);
|
||||
else
|
||||
{
|
||||
reporter->Warning("failed to convert remote event '%s' arg #%d,"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue