From 34831aa7d3a98e12bfb15d6e85bc061c256021d3 Mon Sep 17 00:00:00 2001 From: Vern Paxson Date: Sun, 31 Aug 2025 11:19:36 -0700 Subject: [PATCH] fixup! shift much of the internal use of ID* identifier pointers over to IDPtr objects --- src/Stmt.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Stmt.cc b/src/Stmt.cc index b42ee65fb2..9efda21df1 100644 --- a/src/Stmt.cc +++ b/src/Stmt.cc @@ -1018,7 +1018,7 @@ ForStmt::ForStmt(IDPList* arg_loop_vars, ExprPtr loop_expr) : ExprStmt(STMT_FOR, // return; } - else if ( static_cast(indices.size()) != loop_vars->size() ) { + else if ( indices.size() != loop_vars->size() ) { e->Error("wrong index size"); return; }