summaryrefslogtreecommitdiff
path: root/ext/re
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-10-14 21:44:08 +0100
committerNicholas Clark <nick@ccl4.org>2010-10-14 22:00:15 +0100
commitda4061d33235769184e98cc28663a2dd54302fa8 (patch)
tree4570cbd426a13abb0bef561ba7ed9141c616317d /ext/re
parent1d2b7ec55763d41a18a61d1b44aedd531d305ad3 (diff)
downloadperl-da4061d33235769184e98cc28663a2dd54302fa8.tar.gz
Convert modules in ext/ to pass minimal arguments to XSLoader::load().
Diffstat (limited to 'ext/re')
-rw-r--r--ext/re/re.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/re/re.pm b/ext/re/re.pm
index 2d6784a6a6..90e31f3ff9 100644
--- a/ext/re/re.pm
+++ b/ext/re/re.pm
@@ -4,7 +4,7 @@ package re;
use strict;
use warnings;
-our $VERSION = "0.12";
+our $VERSION = "0.13";
our @ISA = qw(Exporter);
our @EXPORT_OK = ('regmust',
qw(is_regexp regexp_pattern
@@ -66,7 +66,7 @@ $flags{TRIE} = $flags{DUMP} | $flags{EXECUTE} | $flags{TRIEC};
if (defined &DynaLoader::boot_DynaLoader) {
require XSLoader;
- XSLoader::load( __PACKAGE__, $VERSION);
+ XSLoader::load();
}
# else we're miniperl
# We need to work for miniperl, because the XS toolchain uses Text::Wrap, which