Skip to content

Commit

Permalink
consting and updated date
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.parrot.org/parrot/trunk@18695 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
petdance committed May 30, 2007
1 parent a35e0a3 commit ec3695b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pmc/nci.pmc
@@ -1,5 +1,5 @@
/* /*
Copyright (C) 2001-2003, The Perl Foundation. Copyright (C) 2001-2007, The Perl Foundation.
$Id$ $Id$


=head1 NAME =head1 NAME
Expand Down Expand Up @@ -112,7 +112,7 @@ Creates and returns a clone of the NCI.
*/ */


PMC* clone() { PMC* clone() {
PMC* ret = pmc_new_noinit(INTERP, SELF->vtable->base_type); PMC* const ret = pmc_new_noinit(INTERP, SELF->vtable->base_type);
PMC_struct_val(ret) = PMC_struct_val(SELF); PMC_struct_val(ret) = PMC_struct_val(SELF);
PMC_pmc_val(ret) = NULL; PMC_pmc_val(ret) = NULL;
/* FIXME if data is malloced (JIT/i386!) then we need /* FIXME if data is malloced (JIT/i386!) then we need
Expand Down

0 comments on commit ec3695b

Please sign in to comment.