mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +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
|
@ -20,7 +20,7 @@ string EmbeddedCodeSegment::ToCode(Env* env) {
|
|||
|
||||
EmbeddedCode::EmbeddedCode() { segments_ = new EmbeddedCodeSegmentList(); }
|
||||
|
||||
EmbeddedCode::~EmbeddedCode() { delete_list(EmbeddedCodeSegmentList, segments_); }
|
||||
EmbeddedCode::~EmbeddedCode() { delete_list(segments_); }
|
||||
|
||||
void EmbeddedCode::Append(int atom) { current_segment_ += static_cast<char>(atom); }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue