Subject: | Warning in 5.21+ |
In 5.21.1, a new warning was added for negative repeat counts. This continues in the non-dev releases, including 5.24.0.
perl -E 'use Math::Int2Base qw/int2base base2int/; say int2base(255, 16)'
Negative repeat count does nothing at [...]lib/site_perl/5.24.0/Math/Int2Base.pm line 38.
FF
The hackiest way to fix this is to put "no warnings;" on the line before int2base returns. There are probably less hammer-ish ways to avoid it.