in reply to Re: Re: v-string in use/require non-portable
in thread v-string in use/require non-portable
MIME::Field::ParamVal doesn't use warnings itself, so it is only warning because the original poster running using the -w switch (or is turning on warnings with the $^W variable.) Removing the -w and putting "use warnings" in the main script instead should fix the problem (by disabling any warnings from all modules that didn't explicitly enable them), as would:
Incidentally, this warning is removed as of 5.8.1, but is still in bleadperl; is this intentional?BEGIN { local $^W = 0; require MIME::Field::ParamVal; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: v-string in use/require non-portable
by hv (Prior) on May 16, 2004 at 20:48 UTC |