diff options
Diffstat (limited to 'ext/B')
-rw-r--r-- | ext/B/B/Concise.pm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/B/B/Concise.pm b/ext/B/B/Concise.pm index 729fcd95f4..0bb68a6c4b 100644 --- a/ext/B/B/Concise.pm +++ b/ext/B/B/Concise.pm @@ -12,10 +12,9 @@ package B::Concise; use strict; # use #2 use warnings; # uses #3 and #4, since warnings uses Carp -use Exporter (); # use #5 +use Exporter 'import'; # use #5 -our $VERSION = "1.004"; -our @ISA = qw(Exporter); +our $VERSION = "1.005"; our @EXPORT_OK = qw( set_style set_style_standard add_callback concise_subref concise_cv concise_main add_style walk_output compile reset_sequence ); |