additional tweaks to address some compiler warnings

This commit is contained in:
Vern Paxson 2021-09-14 11:45:50 -07:00
parent 693fc14eb2
commit 57fdef573c
6 changed files with 14 additions and 11 deletions

View file

@ -807,7 +807,7 @@ const ZAMStmt ZAMCompiler::LoopOverTable(const ForStmt* f, const NameExpr* val)
auto aux = new ZInstAux(0);
for ( auto i = 0U; i < loop_vars->length(); ++i )
for ( auto i = 0; i < loop_vars->length(); ++i )
{
auto id = (*loop_vars)[i];