From: Karen Etheridge Date: Thu, 19 Sep 2013 04:10:12 +0000 (-0700) Subject: no longer inherit from Exporter X-Git-Tag: v1.000004~5 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FSafe-Isa.git;a=commitdiff_plain;h=7b1885ee681c978c03d4e23ef2e41728712ce1ee;hp=78de03aa7b89d0d2f6438c86f4262dbdf7c2927d no longer inherit from Exporter --- diff --git a/Makefile.PL b/Makefile.PL index 0867c49..4641c15 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -26,7 +26,7 @@ WriteMakefile( }, PREREQ_PM => { - 'Exporter' => 0, + 'Exporter' => '5.57', 'Scalar::Util' => 0, }, }, diff --git a/lib/Safe/Isa.pm b/lib/Safe/Isa.pm index bb0b221..ebadc37 100644 --- a/lib/Safe/Isa.pm +++ b/lib/Safe/Isa.pm @@ -3,7 +3,7 @@ package Safe::Isa; use strict; use warnings FATAL => 'all'; use Scalar::Util qw(blessed); -use base qw(Exporter); +use Exporter 5.57 qw(import); our $VERSION = '1.000003';