Replace use of __alignof__(T) with C11 alignof(T) to improve portability between toolchains.
Signed-off-by: Tyler Retzlaff <roret...@linux.microsoft.com> --- lib/mbuf/rte_mbuf_dyn.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mbuf/rte_mbuf_dyn.c b/lib/mbuf/rte_mbuf_dyn.c index 446018f..1cfb329 100644 --- a/lib/mbuf/rte_mbuf_dyn.c +++ b/lib/mbuf/rte_mbuf_dyn.c @@ -2,6 +2,7 @@ * Copyright 2019 6WIND S.A. */ +#include <stdalign.h> #include <sys/queue.h> #include <stdint.h> #include <limits.h> @@ -585,7 +586,7 @@ void rte_mbuf_dyn_dump(FILE *out) static const struct rte_mbuf_dynfield field_desc = { .name = RTE_MBUF_DYNFIELD_TIMESTAMP_NAME, .size = sizeof(rte_mbuf_timestamp_t), - .align = __alignof__(rte_mbuf_timestamp_t), + .align = alignof(rte_mbuf_timestamp_t), }; struct rte_mbuf_dynflag flag_desc = {}; int offset; -- 1.8.3.1