diff options
author | Nicolas R <atoomic@cpan.org> | 2017-09-12 13:20:25 -0600 |
---|---|---|
committer | Todd Rinaldo <toddr@cpan.org> | 2017-11-11 01:07:18 -0600 |
commit | fd55ca4fb1e49bf9880aad1e3d9f27ace56ec139 (patch) | |
tree | ee4fe8e8ccd3cdef389b201a64b9863d2fcf3363 /ext/FileCache/t/01open.t | |
parent | cc01160e81924fc81416f1a69e0c7c52f7c1bcf7 (diff) | |
download | perl-fd55ca4fb1e49bf9880aad1e3d9f27ace56ec139.tar.gz |
Replace multiple 'use vars' by 'our' in ext
Using vars pragma is discouraged and has been superseded by 'our' declarations
available in Perl v5.6.0 or later.
This commit is about replacing the usage of 'vars' pragma
by 'our' in 'ext' directory.
Diffstat (limited to 'ext/FileCache/t/01open.t')
-rw-r--r-- | ext/FileCache/t/01open.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/FileCache/t/01open.t b/ext/FileCache/t/01open.t index 07e01bac86..c01b25a424 100644 --- a/ext/FileCache/t/01open.t +++ b/ext/FileCache/t/01open.t @@ -2,7 +2,7 @@ use FileCache; -use vars qw(@files); +our @files; BEGIN { @files = qw(foo bar baz quux Foo_Bar) } END { 1 while unlink @files } |