Mj1234 has asked for the wisdom of the Perl Monks concerning the following question:
I have a perl snippet:
use strict; use warnings; use Win32; use File::Path;
I want to suppress the uninitialized perl variable warning from Win32 library but dont want to suppress the uninitialized perl variables warning for other libraries such as File::Path. Is there a way I can do this? I tried no warnings 'uninitalized' but this suppresses all uninitialized warnings.
Thanks.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Suppress uninitialized Perl variables warning
by toolic (Bishop) on Oct 28, 2015 at 12:34 UTC |