mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 03:28:19 +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
|
@ -713,7 +713,7 @@ void Analyzer::AddTimer(analyzer_timer_func timer, double t,
|
|||
AnalyzerTimer(this, timer, t, do_expire, type);
|
||||
|
||||
Conn()->GetTimerMgr()->Add(analyzer_timer);
|
||||
timers.append(analyzer_timer);
|
||||
timers.push_back(analyzer_timer);
|
||||
}
|
||||
|
||||
void Analyzer::RemoveTimer(Timer* t)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue