Skip to content

Commit

Permalink
fixed @{} bug in HoldRow
Browse files Browse the repository at this point in the history
  • Loading branch information
jberger committed Feb 8, 2012
1 parent 1286037 commit f0dde69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Tie/Array/CSV/HoldRow.pm
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ use Tie::Array;
our @ISA = ('Tie::Array');

use overload
'@{}' => sub{ return @{ $_[0]{fields} } };
'@{}' => sub{ $_[0]{fields} };

sub TIEARRAY {
my $class = shift;
Expand Down

0 comments on commit f0dde69

Please sign in to comment.