[svn:parrot] r47655 - trunk/include/parrot

NotFound at svn.parrot.org NotFound at svn.parrot.org
Wed Jun 16 15:26:44 UTC 2010


Author: NotFound
Date: Wed Jun 16 15:26:43 2010
New Revision: 47655
URL: https://trac.parrot.org/parrot/changeset/47655

Log:
[cage] drop trailing commas in enums

Modified:
   trunk/include/parrot/interpreter.h
   trunk/include/parrot/oplib.h

Modified: trunk/include/parrot/interpreter.h
==============================================================================
--- trunk/include/parrot/interpreter.h	Wed Jun 16 06:04:23 2010	(r47654)
+++ trunk/include/parrot/interpreter.h	Wed Jun 16 15:26:43 2010	(r47655)
@@ -24,7 +24,7 @@
 
     PARROT_IS_THREAD        = 0x1000, /* interpreter is a thread */
     PARROT_THR_COPY_INTERP  = 0x2000, /* thread start copies interp state */
-    PARROT_THR_THREAD_POOL  = 0x4000, /* type3 threads */
+    PARROT_THR_THREAD_POOL  = 0x4000  /* type3 threads */
 
 } Parrot_Interp_flag;
 /* &end_gen */

Modified: trunk/include/parrot/oplib.h
==============================================================================
--- trunk/include/parrot/oplib.h	Wed Jun 16 06:04:23 2010	(r47654)
+++ trunk/include/parrot/oplib.h	Wed Jun 16 15:26:43 2010	(r47655)
@@ -50,7 +50,7 @@
     CORE_OPS_check_events,      /* explicit event check */
     CORE_OPS_check_events__,    /* inserted into op dispatch when an event
                                    got scheduled */
-    CORE_OPS_wrapper__,         /* inserted by dynop_register for new ops */
+    CORE_OPS_wrapper__          /* inserted by dynop_register for new ops */
         /* 2 more reserved */
 } special_core_ops_enum;
 


More information about the parrot-commits mailing list