From: Karen Etheridge Date: Sun, 22 Dec 2019 22:07:53 +0000 (-0800) Subject: switch off of "use vars" X-Git-Tag: v0.006_021~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3ed1278864db0b5b821e95a58a2b11b586dde81e;p=p5sagit%2FDevel-Declare.git switch off of "use vars" --- diff --git a/lib/Devel/Declare.pm b/lib/Devel/Declare.pm index 90e1d37..f5cc239 100644 --- a/lib/Devel/Declare.pm +++ b/lib/Devel/Declare.pm @@ -13,7 +13,7 @@ use constant DECLARE_PROTO => 2; use constant DECLARE_NONE => 4; use constant DECLARE_PACKAGE => 8+1; # name implicit -use vars qw(%declarators %declarator_handlers @ISA); +our (%declarators, %declarator_handlers, @ISA); use base qw(DynaLoader); use Scalar::Util 'set_prototype'; use B::Hooks::OP::Check 0.19;