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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Fri Oct 23 18:05:05 UTC 2009


Author: mikehh
Date: Fri Oct 23 18:04:59 2009
New Revision: 42046
URL: https://trac.parrot.org/parrot/changeset/42046

Log:
fix codetest failure - there should be at least one space between a C keyword and any subsequent open parenthesis

Modified:
   trunk/src/pmc/callsignaturereturns.pmc

Modified: trunk/src/pmc/callsignaturereturns.pmc
==============================================================================
--- trunk/src/pmc/callsignaturereturns.pmc	Fri Oct 23 17:53:58 2009	(r42045)
+++ trunk/src/pmc/callsignaturereturns.pmc	Fri Oct 23 18:04:59 2009	(r42046)
@@ -188,7 +188,7 @@
         void *cell = STATICSELF.get_pointer_keyed_int(key);
         void *ptr  = UNTAG_CELL(cell);
 
-        switch((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
+        switch ((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
             case PARROT_ARG_INTVAL:
                 *(INTVAL *)ptr = value;
                 break;
@@ -210,7 +210,7 @@
         void *cell = STATICSELF.get_pointer_keyed_int(key);
         void *ptr  = UNTAG_CELL(cell);
 
-        switch((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
+        switch ((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
             case PARROT_ARG_INTVAL:
                 *(INTVAL *)ptr = value;
                 break;
@@ -232,7 +232,7 @@
         void *cell = STATICSELF.get_pointer_keyed_int(key);
         void *ptr  = UNTAG_CELL(cell);
 
-        switch((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
+        switch ((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
             case PARROT_ARG_INTVAL:
                 *(INTVAL *)ptr = Parrot_str_to_int(INTERP, value);
                 break;
@@ -254,7 +254,7 @@
         void *cell = STATICSELF.get_pointer_keyed_int(key);
         void *ptr  = UNTAG_CELL(cell);
 
-        switch((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
+        switch ((Call_bits_enum_t)CELL_TYPE_MASK(cell)) {
             case PARROT_ARG_INTVAL:
                 *(INTVAL *)ptr = VTABLE_get_integer(INTERP, value);
                 break;


More information about the parrot-commits mailing list