Skip Menu |

This queue is for tickets about the Perl6-Junction CPAN distribution.

Report information
The Basics
Id: 85699
Status: resolved
Priority: 0/
Queue: Perl6-Junction

People
Owner: Nobody in particular
Requestors: olaf [...] wundersolutions.com
Cc:
AdminCc:

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



Subject: "Smartmatch is experimental" warnings
Using Perl6::Junction under perl 5.18 is generating "Smartmatch is experimental" warnings.
From: paul [...] city-fan.org
On Wed May 29 08:50:16 2013, OALDERS wrote: Show quoted text
> Using Perl6::Junction under perl 5.18 is generating "Smartmatch is > experimental" warnings.
Attached patch fixes this for me.
Subject: Perl6-Junction-1.50000-smartmatch.patch
--- lib/Perl6/Junction/All.pm +++ lib/Perl6/Junction/All.pm @@ -1,5 +1,7 @@ package Perl6::Junction::All; use strict; +use warnings; +no if $] >= 5.018000, warnings => 'experimental::smartmatch'; our $VERSION = '1.50000'; use base 'Perl6::Junction::Base'; --- lib/Perl6/Junction/Any.pm +++ lib/Perl6/Junction/Any.pm @@ -1,5 +1,7 @@ package Perl6::Junction::Any; use strict; +use warnings; +no if $] >= 5.018000, warnings => 'experimental::smartmatch'; our $VERSION = '1.50000'; use base 'Perl6::Junction::Base'; --- lib/Perl6/Junction/None.pm +++ lib/Perl6/Junction/None.pm @@ -1,5 +1,7 @@ package Perl6::Junction::None; use strict; +use warnings; +no if $] >= 5.018000, warnings => 'experimental::smartmatch'; our $VERSION = '1.50000'; use base 'Perl6::Junction::Base'; --- lib/Perl6/Junction/One.pm +++ lib/Perl6/Junction/One.pm @@ -1,5 +1,7 @@ package Perl6::Junction::One; use strict; +use warnings; +no if $] >= 5.018000, warnings => 'experimental::smartmatch'; our $VERSION = '1.50000'; use base 'Perl6::Junction::Base';
On Thu Jul 25 05:54:42 2013, paul@city-fan.org wrote: Show quoted text
> On Wed May 29 08:50:16 2013, OALDERS wrote:
> > Using Perl6::Junction under perl 5.18 is generating "Smartmatch is > > experimental" warnings.
> > Attached patch fixes this for me.
Fixed in 1.6