mirror of
https://github.com/zeek/zeek.git
synced 2025-10-08 01:28:20 +00:00
tweaks to address some compiler warnings
This commit is contained in:
parent
7f3993ca0e
commit
693fc14eb2
13 changed files with 44 additions and 27 deletions
|
@ -807,7 +807,7 @@ const ZAMStmt ZAMCompiler::LoopOverTable(const ForStmt* f, const NameExpr* val)
|
|||
|
||||
auto aux = new ZInstAux(0);
|
||||
|
||||
for ( int i = 0; i < loop_vars->length(); ++i )
|
||||
for ( auto i = 0U; i < loop_vars->length(); ++i )
|
||||
{
|
||||
auto id = (*loop_vars)[i];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue