From 162bc5f1e38d8ca564f398fbedf2d22bfbc07551 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Mon, 22 Jul 2019 10:58:31 -0700 Subject: [PATCH] Remove List::append deprecation --- src/List.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/List.h b/src/List.h index fc311c66b4..01e5eb3f9b 100644 --- a/src/List.h +++ b/src/List.h @@ -196,7 +196,8 @@ public: 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 { push_back(a);