mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48: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
|
@ -44,7 +44,7 @@ public:
|
|||
id_list* GetInits();
|
||||
|
||||
// Adds a variable to the list.
|
||||
void AddInit(ID* id) { inits->append(id); }
|
||||
void AddInit(ID* id) { inits->push_back(id); }
|
||||
|
||||
void Describe(ODesc* d) const override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue