summaryrefslogtreecommitdiff
path: root/cpan/Scalar-List-Utils
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-06-22 12:29:15 +0100
committerDavid Mitchell <davem@iabyn.com>2017-06-22 12:29:15 +0100
commitf5ac400ef4c98ac6732a79664b11857f46cf2d8b (patch)
treedc53e7113692fd10960d12913c12ba27211551f8 /cpan/Scalar-List-Utils
parent475524d62d5431302c913df3e8492b409284d7cc (diff)
downloadperl-f5ac400ef4c98ac6732a79664b11857f46cf2d8b.tar.gz
undo a Scalar-List-Utils customisation
.. in preparation for installing new release Revert "netbsd-vax: also the 1E1000 is toxic (in compiletime)." This reverts commit d1deb742f98169ce12c103478382902d83f6717a.
Diffstat (limited to 'cpan/Scalar-List-Utils')
-rw-r--r--cpan/Scalar-List-Utils/lib/List/Util.pm2
-rw-r--r--cpan/Scalar-List-Utils/lib/List/Util/XS.pm2
-rw-r--r--cpan/Scalar-List-Utils/lib/Scalar/Util.pm2
-rw-r--r--cpan/Scalar-List-Utils/lib/Sub/Util.pm2
-rw-r--r--cpan/Scalar-List-Utils/t/uniq.t2
5 files changed, 5 insertions, 5 deletions
diff --git a/cpan/Scalar-List-Utils/lib/List/Util.pm b/cpan/Scalar-List-Utils/lib/List/Util.pm
index 23473fc627..b8f81bab45 100644
--- a/cpan/Scalar-List-Utils/lib/List/Util.pm
+++ b/cpan/Scalar-List-Utils/lib/List/Util.pm
@@ -15,7 +15,7 @@ our @EXPORT_OK = qw(
all any first min max minstr maxstr none notall product reduce sum sum0 shuffle uniq uniqnum uniqstr
pairs unpairs pairkeys pairvalues pairmap pairgrep pairfirst
);
-our $VERSION = "1.46_02";
+our $VERSION = "1.46_01";
our $XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/cpan/Scalar-List-Utils/lib/List/Util/XS.pm b/cpan/Scalar-List-Utils/lib/List/Util/XS.pm
index 783499c35f..e93fe2bb18 100644
--- a/cpan/Scalar-List-Utils/lib/List/Util/XS.pm
+++ b/cpan/Scalar-List-Utils/lib/List/Util/XS.pm
@@ -3,7 +3,7 @@ use strict;
use warnings;
use List::Util;
-our $VERSION = "1.46_02"; # FIXUP
+our $VERSION = "1.46_01"; # FIXUP
$VERSION = eval $VERSION; # FIXUP
1;
diff --git a/cpan/Scalar-List-Utils/lib/Scalar/Util.pm b/cpan/Scalar-List-Utils/lib/Scalar/Util.pm
index bb0f780b55..141ba6327a 100644
--- a/cpan/Scalar-List-Utils/lib/Scalar/Util.pm
+++ b/cpan/Scalar-List-Utils/lib/Scalar/Util.pm
@@ -17,7 +17,7 @@ our @EXPORT_OK = qw(
dualvar isdual isvstring looks_like_number openhandle readonly set_prototype
tainted
);
-our $VERSION = "1.46_02";
+our $VERSION = "1.46_01";
$VERSION = eval $VERSION;
require List::Util; # List::Util loads the XS
diff --git a/cpan/Scalar-List-Utils/lib/Sub/Util.pm b/cpan/Scalar-List-Utils/lib/Sub/Util.pm
index 28888f8265..a1c2c7a517 100644
--- a/cpan/Scalar-List-Utils/lib/Sub/Util.pm
+++ b/cpan/Scalar-List-Utils/lib/Sub/Util.pm
@@ -15,7 +15,7 @@ our @EXPORT_OK = qw(
subname set_subname
);
-our $VERSION = "1.46_02";
+our $VERSION = "1.46_01";
$VERSION = eval $VERSION;
require List::Util; # as it has the XS
diff --git a/cpan/Scalar-List-Utils/t/uniq.t b/cpan/Scalar-List-Utils/t/uniq.t
index 354b2137ac..e47b407f0d 100644
--- a/cpan/Scalar-List-Utils/t/uniq.t
+++ b/cpan/Scalar-List-Utils/t/uniq.t
@@ -75,7 +75,7 @@ my $vax_float = (pack("d",1) =~ /^[\x80\x10]\x40/);
skip("VAX does not have inf/nan", 1) if $vax_float;
# Hard to know for sure what an Inf is going to be. Lets make one
-my $Inf = 0 + eval '1E1000';
+my $Inf = 0 + 1E1000;
my $NaN;
$Inf **= 1000 while ( $NaN = $Inf - $Inf ) == $NaN;