From: Mathieu Desnoyers Date: Wed, 17 Mar 2021 20:16:48 +0000 (-0400) Subject: Namespace _float_mant_dig with lttng_ust_ prefix X-Git-Tag: v2.13.0-rc1~253 X-Git-Url: http://git.lttng.org/?a=commitdiff_plain;h=89080a4901917de0c71df6590a5a8ee53fd9d6ad;p=lttng-ust.git Namespace _float_mant_dig with lttng_ust_ prefix Signed-off-by: Mathieu Desnoyers Change-Id: I25085e6c9d93e6b0c4ff8392d263d53117505c40 --- diff --git a/include/lttng/ust-events.h b/include/lttng/ust-events.h index 18706fa8..bb038bbe 100644 --- a/include/lttng/ust-events.h +++ b/include/lttng/ust-events.h @@ -146,7 +146,7 @@ struct lttng_ust_type_float { * Only float and double are supported. long double is not supported at * the moment. */ -#define _float_mant_dig(_type) \ +#define lttng_ust_float_mant_dig(_type) \ (sizeof(_type) == sizeof(float) ? FLT_MANT_DIG \ : (sizeof(_type) == sizeof(double) ? DBL_MANT_DIG \ : 0)) @@ -158,8 +158,8 @@ struct lttng_ust_type_float { }, \ .struct_size = sizeof(struct lttng_ust_type_float), \ .exp_dig = sizeof(_type) * CHAR_BIT \ - - _float_mant_dig(_type), \ - .mant_dig = _float_mant_dig(_type), \ + - lttng_ust_float_mant_dig(_type), \ + .mant_dig = lttng_ust_float_mant_dig(_type), \ .alignment = lttng_alignof(_type) * CHAR_BIT, \ .reverse_byte_order = BYTE_ORDER != FLOAT_WORD_ORDER, \ }))