diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-10-14 21:44:08 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-10-14 22:00:15 +0100 |
commit | da4061d33235769184e98cc28663a2dd54302fa8 (patch) | |
tree | 4570cbd426a13abb0bef561ba7ed9141c616317d /ext/Devel-Peek | |
parent | 1d2b7ec55763d41a18a61d1b44aedd531d305ad3 (diff) | |
download | perl-da4061d33235769184e98cc28663a2dd54302fa8.tar.gz |
Convert modules in ext/ to pass minimal arguments to XSLoader::load().
Diffstat (limited to 'ext/Devel-Peek')
-rw-r--r-- | ext/Devel-Peek/Peek.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Devel-Peek/Peek.pm b/ext/Devel-Peek/Peek.pm index 2fced312f2..e6efe03ba6 100644 --- a/ext/Devel-Peek/Peek.pm +++ b/ext/Devel-Peek/Peek.pm @@ -3,12 +3,12 @@ package Devel::Peek; -$VERSION = '1.04'; +$VERSION = '1.05'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; require Exporter; -use XSLoader (); +require XSLoader; @ISA = qw(Exporter); @EXPORT = qw(Dump mstat DeadCode DumpArray DumpWithOP DumpProg @@ -16,7 +16,7 @@ use XSLoader (); @EXPORT_OK = qw(SvREFCNT SvREFCNT_inc SvREFCNT_dec CvGV); %EXPORT_TAGS = ('ALL' => [@EXPORT, @EXPORT_OK]); -XSLoader::load 'Devel::Peek'; +XSLoader::load(); sub import { my $c = shift; |