mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
binpac: Replace delete_list macro uses
This commit is contained in:
parent
64b3265eb8
commit
4dc546f8c8
13 changed files with 32 additions and 31 deletions
|
@ -34,14 +34,14 @@ AnalyzerDecl::AnalyzerDecl(ID* id, DeclType decl_type, ParamList* params) : Type
|
|||
}
|
||||
|
||||
AnalyzerDecl::~AnalyzerDecl() {
|
||||
delete_list(StateVarList, statevars_);
|
||||
delete_list(AnalyzerActionList, actions_);
|
||||
delete_list(AnalyzerHelperList, helpers_);
|
||||
delete_list(FunctionList, functions_);
|
||||
delete_list(ParamList, params_);
|
||||
delete_list(AnalyzerHelperList, constructor_helpers_);
|
||||
delete_list(AnalyzerHelperList, destructor_helpers_);
|
||||
delete_list(AnalyzerHelperList, eof_helpers_);
|
||||
delete_list(statevars_);
|
||||
delete_list(actions_);
|
||||
delete_list(helpers_);
|
||||
delete_list(functions_);
|
||||
delete_list(params_);
|
||||
delete_list(constructor_helpers_);
|
||||
delete_list(destructor_helpers_);
|
||||
delete_list(eof_helpers_);
|
||||
}
|
||||
|
||||
void AnalyzerDecl::AddElements(AnalyzerElementList* elemlist) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue