Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add back decontainerize that got lost during refactors.
  • Loading branch information
jnthn committed Jul 5, 2011
1 parent 037134d commit 8fffc11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/6model/reprs/P6opaque.c
Expand Up @@ -94,7 +94,7 @@ PMC * index_mapping_and_flat_list(PARROT_INTERP, PMC *WHAT, P6opaqueREPRData *re
while (mro_idx)
{
/* Get current class in MRO. */
PMC *current_class = VTABLE_get_pmc_keyed_int(interp, mro, --mro_idx);
PMC *current_class = decontainerize(interp, VTABLE_get_pmc_keyed_int(interp, mro, --mro_idx));
PMC *HOW = STABLE(current_class)->HOW;

/* Get its local parents. */
Expand Down

0 comments on commit 8fffc11

Please sign in to comment.