Skip to content

Commit

Permalink
fix codetest failure - linelength
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehh committed Nov 30, 2010
1 parent 735e267 commit 7979a2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/namespace.c
Expand Up @@ -328,7 +328,8 @@ store_sub_in_multi(PARROT_INTERP, ARGIN(PMC *sub_pmc), ARGIN(PMC *ns))

/* is there an existing MultiSub PMC? or do we need to create one? */
if (PMC_IS_NULL(multisub)) {
multisub = Parrot_pmc_new(interp, Parrot_hll_get_ctx_HLL_type(interp, enum_class_MultiSub));
multisub = Parrot_pmc_new(interp,
Parrot_hll_get_ctx_HLL_type(interp, enum_class_MultiSub));
/* we have to push the sub onto the MultiSub before we try to store
it because storing requires information from the sub */
VTABLE_push_pmc(interp, multisub, sub_pmc);
Expand Down

0 comments on commit 7979a2d

Please sign in to comment.