From: Karen Etheridge Date: Sat, 9 Aug 2014 04:57:21 +0000 (-0700) Subject: use Exporter directly, to avoid base as a prerq X-Git-Tag: v0.10-TRIAL~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c2501c3b6b956ebe80318851be9d54a5d77a59f9;p=p5sagit%2FSub-Name.git use Exporter directly, to avoid base as a prerq --- diff --git a/lib/Sub/Name.pm b/lib/Sub/Name.pm index 37ac897..09e66d4 100644 --- a/lib/Sub/Name.pm +++ b/lib/Sub/Name.pm @@ -56,7 +56,7 @@ use 5.006; use strict; use warnings; -use base 'Exporter'; +use Exporter 5.57 'import'; our @EXPORT = qw(subname); our @EXPORT_OK = @EXPORT;