Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
op.c: Add a cast to silence -Wsign-compare warning
In 32-bit build (where IV is not wider than U32), comparing PL_eval_begin_nest_depth and max_nest_iv would generate a warning: op.c:10817:42: warning: comparison of integer expressions of different signedness: ‘U32’ {aka ‘long unsigned int’} and ‘IV’ {aka ‘long int’} [-Wsign-compare] 10817 | if (PL_eval_begin_nest_depth >= max_nest_iv) { | ^~
- Loading branch information