fix: int8_t is not considered an integer
[lttng-ust.git] / include / lttng / ust-utils.h
index 23d1a07c01081aa55e7279c86d6915b495c271f2..baca88f271184840512ea97745320d8bef65e333 100644 (file)
@@ -42,6 +42,7 @@
 #define lttng_ust_is_integer_type(type) \
                (__builtin_types_compatible_p(type, _Bool) || \
                __builtin_types_compatible_p(type, char) || \
+               __builtin_types_compatible_p(type, signed char) || \
                __builtin_types_compatible_p(type, unsigned char) || \
                __builtin_types_compatible_p(type, short) || \
                __builtin_types_compatible_p(type, unsigned short) || \
This page took 0.023373 seconds and 4 git commands to generate.