Skip Menu |

This queue is for tickets about the version CPAN distribution.

Report information
The Basics
Id: 95896
Status: resolved
Priority: 0/
Queue: version

People
Owner: Nobody in particular
Requestors: jhi [...] iki.fi
Cc:
AdminCc:

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



Subject: dead code in vxs.inc
Date: Fri, 23 May 2014 09:31:54 -0400
To: bug-version [...] rt.cpan.org
From: Jarkko Hietaniemi <jhi [...] iki.fi>
case 0: Perl_croak_nocontext("Usage: version::new(class, version)"); break; } The break; is never going to happen. (Detected by -Wunreachable-code.) Just removing it should be enough.
On Fri May 23 09:32:08 2014, jhi@iki.fi wrote: Show quoted text
> case 0: > Perl_croak_nocontext("Usage: version::new(class, version)"); > break; > } > > The break; is never going to happen. (Detected by -Wunreachable-code.) > Just removing it should be enough.
Thanks applied. John