mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Remove List::append deprecation
This commit is contained in:
parent
6144f459e1
commit
162bc5f1e3
1 changed files with 2 additions and 1 deletions
|
@ -196,7 +196,8 @@ public:
|
||||||
push_front(a);
|
push_front(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
ZEEK_DEPRECATED("Remove in v3.1: Use push_back instead")
|
// The append method is maintained for historical/compatibility reasons.
|
||||||
|
// (It's commonly used in the event generation API)
|
||||||
void append(const T& a) // add to end of list
|
void append(const T& a) // add to end of list
|
||||||
{
|
{
|
||||||
push_back(a);
|
push_back(a);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue