Subject: | warnings from inc/Test/Builder.pm |
Date: | Wed, 27 Nov 2013 08:02:39 +0000 |
To: | bug-YAML [...] rt.cpan.org |
From: | Zefram <zefram [...] fysh.org> |
Testing YAML on 5.19.6 gives many of these warnings:
Possible precedence issue with control flow operator at /opt/perl-5.19.6/cpan/build/YAML-0.86-TyyhBK/inc/Test/Builder.pm line 917.
It's referring to code in _is_dualvar(), physically line 628:
return $numval != 0 and $numval ne $val ? 1 : 0;
which actually returns the truth value arising from $numval!=0; everything
after the "and" is unreachable.
-zefram