in reply to Re: "strict" violation on "sort" command with perl 5.10
in thread "strict" violation on "sort" command with perl 5.10
Or $refdataarr holds 13 instead of an array ref.
Either way, it usually happens when one does
$ref = @array;
when one needs to do
$ref = \@array;
or
$ref = [ @array ];
Contrary to what the OP said, it has nothing to do with 5.10. Something else changed too.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: "strict" violation on "sort" command with perl 5.10
by AnomalousMonk (Archbishop) on Apr 28, 2009 at 22:36 UTC | |
by ikegami (Patriarch) on Apr 29, 2009 at 00:01 UTC |