Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add a missing return.
bbkr__++ for finding this. Fixes #35.
  • Loading branch information
arnsholt committed Oct 6, 2013
1 parent 8f719a5 commit b1acc0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/parrot/pmc/sixmodelobject.pmc
Expand Up @@ -776,7 +776,7 @@ pmclass SixModelObject manual_attrs dynpmc group nqp {
VTABLE INTVAL elements() {
PMC *decont = DECONT(interp, SELF);
if (REPR(decont)->elems)
REPR(decont)->elems(interp, STABLE(decont), OBJECT_BODY(decont));
return REPR(decont)->elems(interp, STABLE(decont), OBJECT_BODY(decont));
else
return SUPER();
}
Expand Down

0 comments on commit b1acc0b

Please sign in to comment.