Skip Menu |

This queue is for tickets about the Data-PrefixMerge CPAN distribution.

Report information
The Basics
Id: 52157
Status: resolved
Worked: 1 min
Priority: 0/
Queue: Data-PrefixMerge

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

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



Subject: Minimum perl version 5.10.0?
I found this in lib/Data/PrefixMerge.pm: 355 my ($self, $data, $maxdepth, $_mem, $_curlevel) = @_; 356 # $_mem is to handle circular reference 357 $maxdepth //= -1; 358 $_curlevel //= 1; 359 The defined-or operator was introduced in perl 5.10.0. If you want to use this construct, please make it clear in the Makefile.PL so that your users get informed before the tests fail. This page has suggestions how to proceed: http://wiki.cpantesters.org/wiki/CPANAuthorNotes Thanks!
On Sat Nov 28 17:03:37 2009, ANDK wrote: Show quoted text
> I found this in lib/Data/PrefixMerge.pm: > > 355 my ($self, $data, $maxdepth, $_mem, $_curlevel) = @_; > 356 # $_mem is to handle circular reference > 357 $maxdepth //= -1; > 358 $_curlevel //= 1; > 359 > > The defined-or operator was introduced in perl 5.10.0. If you want to > use this construct, please make it clear in the Makefile.PL so that
your Show quoted text
> users get informed before the tests fail. This page has suggestions
how Show quoted text
Fixed. Will be in new release (Data-ModeMerge, as I am changing module name). Thanks.