[svn:parrot] r39134 - trunk/src/pmc

petdance at svn.parrot.org petdance at svn.parrot.org
Sun May 24 04:06:50 UTC 2009


Author: petdance
Date: Sun May 24 04:06:49 2009
New Revision: 39134
URL: https://trac.parrot.org/parrot/changeset/39134

Log:
consted and ARGINned the parm to has_pending_std_props

Modified:
   trunk/src/pmc/default.pmc

Modified: trunk/src/pmc/default.pmc
==============================================================================
--- trunk/src/pmc/default.pmc	Sun May 24 04:06:42 2009	(r39133)
+++ trunk/src/pmc/default.pmc	Sun May 24 04:06:49 2009	(r39134)
@@ -171,7 +171,7 @@
 /*
 
 =item C<static INTVAL
-has_pending_std_props(PMC *self)>
+has_pending_std_props(ARGIN(const PMC *self))>
 
 Returns true if propagate_std_props() would create a non-empty prophash.
 
@@ -180,7 +180,7 @@
 */
 
 static INTVAL
-has_pending_std_props(PMC *self) {
+has_pending_std_props(ARGIN(const PMC *self)) {
     if (self->vtable->flags & (VTABLE_IS_CONST_FLAG | VTABLE_IS_READONLY_FLAG))
         return 1;
     else


More information about the parrot-commits mailing list