mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
2580d69782
Cast base parameter to uint64_t in mpz_get_str power-of-2 path to resolve C4018 warning about signed/unsigned mismatch. The comparison now properly compares two unsigned values: ((uint64_t)1 << shift) with (uint64_t)base. Co-authored-by: Claude <noreply@anthropic.com>