Subject: | Subroutine round redefined |
With bleadperl there's a new "subroutine round redefined" warning:
$ perl5.21.5 -MNumber::Format -e1
Subroutine round redefined at /opt/perl-5.21.5/lib/site_perl/5.21.5/Number/Format.pm line 473.
I suspect that POSIX.pm has a new function round() available. If this is true, then the fix would be to change
use POSIX;
by
use POSIX qw(...);
and list only the functions needed by Number::Format.