[svn:parrot] r39486 - trunk/src

chromatic at svn.parrot.org chromatic at svn.parrot.org
Wed Jun 10 05:54:28 UTC 2009


Author: chromatic
Date: Wed Jun 10 05:54:27 2009
New Revision: 39486
URL: https://trac.parrot.org/parrot/changeset/39486

Log:
[src] Fixed two coding standards errors; after changing the function signatures
to match coding standards, the "does this function signature appear in
documentation somewhere exactly as written" coding standards test started to
fail.  That seems slightly picky.

Modified:
   trunk/src/oo.c
   trunk/src/pmc.c

Modified: trunk/src/oo.c
==============================================================================
--- trunk/src/oo.c	Tue Jun  9 23:33:25 2009	(r39485)
+++ trunk/src/oo.c	Wed Jun 10 05:54:27 2009	(r39486)
@@ -252,8 +252,8 @@
 
 /*
 
-=item C<PMC * Parrot_oo_clone_object(PARROT_INTERP, PMC * pmc, PMC * class_, PMC
-* dest)>
+=item C<PMC * Parrot_oo_clone_object(PARROT_INTERP, PMC *pmc, PMC *class_, PMC
+*dest)>
 
 Clone an Object PMC. If an existing PMC C<dest> is provided, reuse that
 PMC to store copies of the data. Otherwise, create a new PMC and populate

Modified: trunk/src/pmc.c
==============================================================================
--- trunk/src/pmc.c	Tue Jun  9 23:33:25 2009	(r39485)
+++ trunk/src/pmc.c	Wed Jun 10 05:54:27 2009	(r39486)
@@ -180,7 +180,7 @@
 
 /*
 
-=item C<PMC * pmc_reuse_by_class(PARROT_INTERP, PMC * pmc, PMC * class_, UINTVAL
+=item C<PMC * pmc_reuse_by_class(PARROT_INTERP, PMC *pmc, PMC *class_, UINTVAL
 flags)>
 
 Reuse an existing PMC. Convert it to the type specified by the given Class


More information about the parrot-commits mailing list