Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SIMIX_context_runall() doesn't take any argument.
[simgrid.git] / include / xbt / automaton.h
index f140ed2e82f259cc36dac78db8a331e0f5e092cb..33acf99398c89ab880ce12e194825480e35114a6 100644 (file)
@@ -28,7 +28,9 @@ typedef struct xbt_automaton {
 typedef struct xbt_automaton* xbt_automaton_t;
 
 typedef struct xbt_exp_label{
-  enum{or=0, and=1, not=2, predicat=3, one=4} type;
+  /* fixme: "or", "and", and "not" are reserved keywords in C++ */
+  /* enum{or=0, and=1, not=2, predicat=3, one=4} type; */
+  int type;
   union{
     struct{
       struct xbt_exp_label* left_exp;