fix: __STDC_VERSION__ can be undefined in C++
[lttng-ust.git] / tests / utils / tap.h
index b3e94450541e203ba38bb9c5b2c3a71fd0869252..e628795efdcb0c87b804110718307f089c140833 100644 (file)
@@ -28,7 +28,7 @@
                        skip(n, fmt, ## __VA_ARGS__);   \
                        continue;                       \
                }
-#elif __STDC_VERSION__ >= 199901L /* __GNUC__ */
+#elif defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) /* __GNUC__ */
 # define ok(e, ...) ((e) ?                                             \
                     _gen_result(1, __func__, __FILE__, __LINE__,       \
                                 __VA_ARGS__) :                         \
This page took 0.023674 seconds and 4 git commands to generate.