[svn:parrot] r43831 - branches/gc_encapsulate_part2/src/gc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Feb 9 21:46:37 UTC 2010


Author: mikehh
Date: Tue Feb  9 21:46:33 2010
New Revision: 43831
URL: https://trac.parrot.org/parrot/changeset/43831

Log:
fix codetest failure - at least one space between C keyword and subsequent open parenthesis

Modified:
   branches/gc_encapsulate_part2/src/gc/gc_private.h

Modified: branches/gc_encapsulate_part2/src/gc/gc_private.h
==============================================================================
--- branches/gc_encapsulate_part2/src/gc/gc_private.h	Tue Feb  9 21:35:18 2010	(r43830)
+++ branches/gc_encapsulate_part2/src/gc/gc_private.h	Tue Feb  9 21:46:33 2010	(r43831)
@@ -115,10 +115,10 @@
     void (*free_pmc_header)(PARROT_INTERP, PMC *);
 
     STRING* (*allocate_string_header)(PARROT_INTERP, UINTVAL flags);
-    void    (*free_string_header)(PARROT_INTERP, STRING*);
+    void (*free_string_header)(PARROT_INTERP, STRING*);
 
     Buffer* (*allocate_bufferlike_header)(PARROT_INTERP, size_t size);
-    void    (*free_bufferlike_header)(PARROT_INTERP, Buffer*, size_t size);
+    void (*free_bufferlike_header)(PARROT_INTERP, Buffer*, size_t size);
 
     void* (*allocate_pmc_attributes)(PARROT_INTERP, PMC *);
     void (*free_pmc_attributes)(PARROT_INTERP, PMC *);


More information about the parrot-commits mailing list