diff options
author | Ricardo Signes <rjbs@cpan.org> | 2013-09-08 22:00:46 -0400 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2013-09-12 19:49:16 -0400 |
commit | 254d42b3c41bf1ba9b0e3afa624df8a03d845729 (patch) | |
tree | 0c12aa0348692a30b8a8347faafa4fa60e3e8051 /ext | |
parent | e15ca23a92d880854f025fe87b3b773259728d6f (diff) | |
download | perl-254d42b3c41bf1ba9b0e3afa624df8a03d845729.tar.gz |
FileCache: use parent instead of base
Diffstat (limited to 'ext')
-rw-r--r-- | ext/FileCache/lib/FileCache.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/FileCache/lib/FileCache.pm b/ext/FileCache/lib/FileCache.pm index 09583b04af..149e88133e 100644 --- a/ext/FileCache/lib/FileCache.pm +++ b/ext/FileCache/lib/FileCache.pm @@ -1,6 +1,6 @@ package FileCache; -our $VERSION = '1.08'; +our $VERSION = '1.09'; =head1 NAME @@ -94,7 +94,7 @@ no strict 'refs'; use vars qw(%saw $cacheout_maxopen); $cacheout_maxopen = 16; -use base 'Exporter'; +use parent 'Exporter'; our @EXPORT = qw[cacheout cacheout_close]; |