Skip to content

Commit

Permalink
[codingstd] Break line to meet linelength standard.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeenan committed Oct 22, 2011
1 parent d9d9961 commit 765a92d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pmc/hash.pmc
Original file line number Diff line number Diff line change
Expand Up @@ -1229,7 +1229,8 @@ entries with the same key.
METHOD update(PMC *other) {
if (other->vtable->base_type == SELF->vtable->base_type
|| other->vtable->base_type == enum_class_Hash) {
Parrot_hash_update(INTERP, (Hash *)SELF.get_pointer(), (Hash *)VTABLE_get_pointer(INTERP, other));
Parrot_hash_update(INTERP, (Hash *)SELF.get_pointer(),
(Hash *)VTABLE_get_pointer(INTERP, other));
}
else {
Parrot_ex_throw_from_c_args(INTERP, NULL, EXCEPTION_UNIMPLEMENTED,
Expand Down

0 comments on commit 765a92d

Please sign in to comment.