in reply to Preventing Use of uninitialized value
which would ultimately prevent uninitialized values to be used :-P{ use warnings FATAL => qw(uninitialized); ... }
OTOH, that is not what you want, since you make clear you just don't want to be warned about it. The (short term) solution for you is simply
On the third hand, of course, the best solution would be to find out, why these values are uninitialized and to do something about that… (Update: as already suggested by pryrt){ no warnings "uninitialized"; ... }
|
|---|