Skip Menu |

This queue is for tickets about the MooseX-Types-NetAddr-IP CPAN distribution.

Report information
The Basics
Id: 96517
Status: open
Priority: 0/
Queue: MooseX-Types-NetAddr-IP

People
Owner: Nobody in particular
Requestors: xenoterracide [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: 5.20 precedence warnings
Date: Tue, 17 Jun 2014 22:46:49 -0500
To: bugs-moosex-types-netaddr-ip [...] rt.cpan.org
From: Caleb Cushing <xenoterracide [...] gmail.com>
On 2014-06-17 20:46:58, XENO wrote: Show quoted text
> investigation of why this is happening is in progress > > http://www.cpantesters.org/cpan/report/2fe57704-f67a-11e3-9bbe-51720a370852 >
return ... or die ... will not do what you think it does. It will always return, and the die part of the expression will never be evaluated. You should instead do: return ... || die ...