Change 34491 by [EMAIL PROTECTED] on 2008/10/15 19:07:38
Silence a warning in Test::Builder that was causing lib/constant.t
to fail.
Affected files ...
... //depot/perl/lib/Test/Builder.pm#35 edit
Differences ...
==== //depot/perl/lib/Test/Builder.pm#35 (text) ====
Index: perl/lib/Test/Builder.pm
--- perl/lib/Test/Builder.pm#34~34483~ 2008-10-15 06:11:04.000000000 -0700
+++ perl/lib/Test/Builder.pm 2008-10-15 12:07:38.000000000 -0700
@@ -5,7 +5,7 @@
use strict;
use warnings;
-our $VERSION = '0.82';
+our $VERSION = '0.82_01';
$VERSION = eval $VERSION; ## no critic
(BuiltinFunctions::ProhibitStringyEval)
# Make Test::Builder thread-safe for ithreads.
@@ -487,6 +487,7 @@
$self->_unoverload( '0+', @_ );
+ no warnings 'numeric';
for my $val (@_) {
next unless $self->_is_dualvar($$val);
$$val = $$val + 0;
End of Patch.