Skip to content

Commit

Permalink
Fix some missing type-checking in typed arrays.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Aug 18, 2013
1 parent 0fae92b commit 2f1efb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Array.pm
Expand Up @@ -105,7 +105,7 @@ class Array { # declared in BOOTSTRAP
my Mu $iter := nqp::iterator($rpa);
my int $i = 0;
while $iter {
nqp::bindpos($rpa, $i, my $v = nqp::shift($iter));
nqp::bindpos($rpa, $i, nqp::p6scalarfromdesc($!descriptor) = nqp::shift($iter));
$i = $i + 1;
}
nqp::findmethod(List, 'REIFY')(self, parcel, nextiter)
Expand Down

0 comments on commit 2f1efb8

Please sign in to comment.