Subject: | don't set $^W = 0 |
In lib/Data/FormValidator/Results.pm , sub _arrayify ,
there is:
- $^W = 0; # turn off warnings about undef
This unexpectedly turns off warnings for any code using
Data::FormValidator , if invoked with "perl -w".
Localizing it will work as well, without turning off warnings:
+ local $^W = 0; # turn off warnings about undef