Skip to content

Commit

Permalink
fixed copy-pasto
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuomingliang committed Jun 2, 2013
1 parent c8f5f7f commit 036ce9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/6model/reprs/P6num.c
Expand Up @@ -20,8 +20,8 @@ static MVMObject * allocate(MVMThreadContext *tc, MVMSTable *st) {

/* Copies the body of one object to another. */
static void copy_to(MVMThreadContext *tc, MVMSTable *st, void *src, MVMObject *dest_root, void *dest) {
P6intBody *src_body = (P6intBody *)src;
P6intBody *dest_body = (P6intBody *)dest;
P6numBody *src_body = (P6numBody *)src;
P6numBody *dest_body = (P6numBody *)dest;
dest_body->value = src_body->value;
}

Expand Down

0 comments on commit 036ce9c

Please sign in to comment.