diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-02-07 15:47:15 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-02-07 15:47:15 +0000 |
commit | 2770a1ce2934f4277de13f4f795ba41c86bf1646 (patch) | |
tree | 641e0bd259bb1bb380962eb9af8b082879e725e8 /lib/Exporter.pm | |
parent | b3f1e0ca82d294b0623e703c44104244c31cb9ef (diff) | |
download | perl-2770a1ce2934f4277de13f4f795ba41c86bf1646.tar.gz |
Carp 1.05 shipped with 5.8.8. Remove work-around for pre 1.05.
Diffstat (limited to 'lib/Exporter.pm')
-rw-r--r-- | lib/Exporter.pm | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Exporter.pm b/lib/Exporter.pm index 9e1c1ead7f..c18a13a8af 100644 --- a/lib/Exporter.pm +++ b/lib/Exporter.pm @@ -9,12 +9,9 @@ require 5.006; our $Debug = 0; our $ExportLevel = 0; our $Verbose ||= 0; -our $VERSION = '5.63'; +our $VERSION = '5.64'; our (%Cache); -# Carp 1.05+ does this now for us, but we may be running with an old Carp -$Carp::Internal{Exporter}++; - sub as_heavy { require Exporter::Heavy; # Unfortunately, this does not work if the caller is aliased as *name = \&foo |