mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08: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
2
src/RE.h
2
src/RE.h
|
@ -64,7 +64,7 @@ public:
|
|||
void InsertCCL(const char* txt, CCL* ccl) { ccl_dict.Insert(txt, ccl); }
|
||||
int InsertCCL(CCL* ccl)
|
||||
{
|
||||
ccl_list.append(ccl);
|
||||
ccl_list.push_back(ccl);
|
||||
return ccl_list.length() - 1;
|
||||
}
|
||||
CCL* LookupCCL(const char* txt) { return ccl_dict.Lookup(txt); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue