mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 19:18:19 +00:00
Fix clang-tidy modernize-loop-convert findings
This commit is contained in:
parent
49b803c0a8
commit
f3588657bf
56 changed files with 452 additions and 542 deletions
|
@ -376,8 +376,8 @@ void get_final_stats() {
|
|||
void delete_run() {
|
||||
util::detail::set_processing_status("TERMINATING", "delete_run");
|
||||
|
||||
for ( int i = 0; i < zeek::detail::NUM_ADDR_ANONYMIZATION_METHODS; ++i )
|
||||
delete zeek::detail::ip_anonymizer[i];
|
||||
for ( auto& anon : zeek::detail::ip_anonymizer )
|
||||
delete anon;
|
||||
}
|
||||
|
||||
double check_pseudo_time(const Packet* pkt) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue