Subject: | Uninitialized value warning |
When using cmpthese, it produces this warning:
Use of uninitialized value $style in lc at
/usr/local/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2/Benchmark/Dumb.pm
line 190.
This line:
my $style = shift; # ignored unless 'none'
should probably be:
my $style = shift || ''; # ignored unless 'none'