fixup! shift much of the internal use of ID* identifier pointers over to IDPtr objects

This commit is contained in:
Vern Paxson 2025-08-31 11:19:36 -07:00
parent b6b8484819
commit 34831aa7d3

View file

@ -1018,7 +1018,7 @@ ForStmt::ForStmt(IDPList* arg_loop_vars, ExprPtr loop_expr) : ExprStmt(STMT_FOR,
//
return;
}
else if ( static_cast<int>(indices.size()) != loop_vars->size() ) {
else if ( indices.size() != loop_vars->size() ) {
e->Error("wrong index size");
return;
}