[svn:parrot] r44818 - branches/fix_icc_failures/include/parrot
whiteknight at svn.parrot.org
whiteknight at svn.parrot.org
Tue Mar 9 16:52:09 UTC 2010
Author: whiteknight
Date: Tue Mar 9 16:52:04 2010
New Revision: 44818
URL: https://trac.parrot.org/parrot/changeset/44818
Log:
remove some non-standard trailing commas at the end of enums, which isn't a problem most of the time but ICC hates it
Modified:
branches/fix_icc_failures/include/parrot/hash.h
branches/fix_icc_failures/include/parrot/pmc_freeze.h
branches/fix_icc_failures/include/parrot/runcore_profiling.h
Modified: branches/fix_icc_failures/include/parrot/hash.h
==============================================================================
--- branches/fix_icc_failures/include/parrot/hash.h Tue Mar 9 16:38:54 2010 (r44817)
+++ branches/fix_icc_failures/include/parrot/hash.h Tue Mar 9 16:52:04 2010 (r44818)
@@ -87,7 +87,7 @@
ORDERED_HASH_ITEM_VALUE = 1,
ORDERED_HASH_ITEM_PREV = 2,
ORDERED_HASH_ITEM_NEXT = 3,
- ORDERED_HASH_ITEM_MAX = 4,
+ ORDERED_HASH_ITEM_MAX = 4
};
/* HEADERIZER BEGIN: src/hash.c */
Modified: branches/fix_icc_failures/include/parrot/pmc_freeze.h
==============================================================================
--- branches/fix_icc_failures/include/parrot/pmc_freeze.h Tue Mar 9 16:38:54 2010 (r44817)
+++ branches/fix_icc_failures/include/parrot/pmc_freeze.h Tue Mar 9 16:52:04 2010 (r44818)
@@ -17,7 +17,7 @@
VISIT_HOW_PMC_TO_VISITOR = 0x00, /* push to visitor */
VISIT_HOW_VISITOR_TO_PMC = 0x01, /* shift from visitor */
VISIT_HOW_PMC_TO_PMC = 0x02, /* push to visitor; then shift from visitor */
- VISIT_HOW_VISITOR_TO_VISITOR = 0x03, /* shift from visitor; then push to visitor */
+ VISIT_HOW_VISITOR_TO_VISITOR = 0x03 /* shift from visitor; then push to visitor */
} visit_how_enum_t;
#define VISIT_HOW_MASK 0x03
@@ -26,7 +26,7 @@
VISIT_WHAT_PMC = 0x04,
VISIT_WHAT_STRING = 0x08,
VISIT_WHAT_FLOATVAL = 0x10,
- VISIT_WHAT_INTVAL = 0x20,
+ VISIT_WHAT_INTVAL = 0x20
} visit_what_enum_t;
#define VISIT_WHAT_MASK 0x3c
@@ -39,7 +39,7 @@
typedef enum {
EXTRA_IS_NULL,
- EXTRA_IS_PROP_HASH,
+ EXTRA_IS_PROP_HASH
} extra_flags_enum;
#define VISIT_PMC(interp, visit, pmc) do {\
Modified: branches/fix_icc_failures/include/parrot/runcore_profiling.h
==============================================================================
--- branches/fix_icc_failures/include/parrot/runcore_profiling.h Tue Mar 9 16:38:54 2010 (r44817)
+++ branches/fix_icc_failures/include/parrot/runcore_profiling.h Tue Mar 9 16:52:04 2010 (r44818)
@@ -64,7 +64,7 @@
PPROF_DATA_CLI = 0,
- PPROF_DATA_MAX = 3,
+ PPROF_DATA_MAX = 3
} Parrot_profiling_datatype;
struct profiling_runcore_t {
More information about the parrot-commits
mailing list