bin: compile lttng-sessiond as C++
[lttng-tools.git] / src / common / optional.h
index dcb7ca8639fd67ddac916ea84816e24e0b2b2b5e..0501904cbc4d1cfa52a926be158afe5219712646 100644 (file)
 /*
  * Initialize an optional field as 'set' with a given value.
  */
-#define LTTNG_OPTIONAL_INIT_VALUE(val) { .value = val, .is_set = 1 }
+#define LTTNG_OPTIONAL_INIT_VALUE(val) { .is_set = 1, .value = val }
 
 /* Set the value of an optional field. */
 #define LTTNG_OPTIONAL_SET(field_ptr, val)     \
        do {                                    \
-               (field_ptr)->value = (val);     \
                (field_ptr)->is_set = 1;        \
+               (field_ptr)->value = (val);     \
        } while (0)
 
 /* Put an optional field in the "unset" (NULL-ed) state. */
This page took 0.023155 seconds and 4 git commands to generate.