Clean-up: run format-cpp on the tree
[lttng-tools.git] / src / common / bug.hpp
index f77c775a7ff23a190ad36808ff429645e77f9dc3..758fcf70c5be9d176ac6f5e97ad1963dde1b7d20 100644 (file)
@@ -8,22 +8,19 @@
 #ifndef _LTTNG_BUG_H
 #define _LTTNG_BUG_H
 
-#include <urcu/compiler.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <urcu/compiler.h>
 
-#define LTTNG_BUG_ON(condition)                                                \
-       do {                                                            \
-               if (caa_unlikely(condition)) {                          \
-                       fprintf(stderr,                                 \
-                               "LTTng BUG in file %s, line %d.\n",     \
-                               __FILE__, __LINE__);                    \
-                       exit(EXIT_FAILURE);                             \
-               }                                                       \
+#define LTTNG_BUG_ON(condition)                                                                  \
+       do {                                                                                     \
+               if (caa_unlikely(condition)) {                                                   \
+                       fprintf(stderr, "LTTng BUG in file %s, line %d.\n", __FILE__, __LINE__); \
+                       exit(EXIT_FAILURE);                                                      \
+               }                                                                                \
        } while (0)
 
-#define LTTNG_BUILD_BUG_ON(condition)                                  \
-       ((void) sizeof(char[-!!(condition)]))
+#define LTTNG_BUILD_BUG_ON(condition) ((void) sizeof(char[-!!(condition)]))
 
 /**
  * LTTNG_BUILD_RUNTIME_BUG_ON - check condition at build (if constant) or runtime
  * if the condition is ever true. If the condition is constant and false, no
  * code is emitted.
  */
-#define LTTNG_BUILD_RUNTIME_BUG_ON(condition)                  \
-       do {                                                    \
-               if (__builtin_constant_p(condition))            \
-                       LTTNG_BUILD_BUG_ON(condition);          \
-               else                                            \
-                       LTTNG_BUG_ON(condition);                \
+#define LTTNG_BUILD_RUNTIME_BUG_ON(condition)          \
+       do {                                           \
+               if (__builtin_constant_p(condition))   \
+                       LTTNG_BUILD_BUG_ON(condition); \
+               else                                   \
+                       LTTNG_BUG_ON(condition);       \
        } while (0)
 
 #endif
This page took 0.023637 seconds and 4 git commands to generate.