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/File-Glob | |
parent | 1d2b7ec55763d41a18a61d1b44aedd531d305ad3 (diff) | |
download | perl-da4061d33235769184e98cc28663a2dd54302fa8.tar.gz |
Convert modules in ext/ to pass minimal arguments to XSLoader::load().
Diffstat (limited to 'ext/File-Glob')
-rw-r--r-- | ext/File-Glob/Glob.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/File-Glob/Glob.pm b/ext/File-Glob/Glob.pm index 240e0a5218..dcd9a47425 100644 --- a/ext/File-Glob/Glob.pm +++ b/ext/File-Glob/Glob.pm @@ -4,7 +4,7 @@ use strict; our($VERSION, @ISA, @EXPORT_OK, @EXPORT_FAIL, %EXPORT_TAGS, $AUTOLOAD, $DEFAULT_FLAGS); -use XSLoader (); +require XSLoader; @ISA = qw(Exporter); @@ -56,7 +56,7 @@ use XSLoader (); ) ], ); -$VERSION = '1.08'; +$VERSION = '1.09'; sub import { require Exporter; @@ -93,7 +93,7 @@ sub AUTOLOAD { goto &$AUTOLOAD; } -XSLoader::load 'File::Glob', $VERSION; +XSLoader::load(); # Preloaded methods go here. |