You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not do local on a variable when it has not yet been declared.
MM's code to determine version does a local on $VERSION without having
first declared it. Instead it should do 'my' on it unless the variable
is defined at a distance.
my $VERSION = ...
# or
local $Foo::Bar::VERSION = ...
Doing this causes this code to pass strict where it did not previously
do so.
0 commit comments