From d48d51df239fbc2f64727a74841926e33fc8019c Mon Sep 17 00:00:00 2001 From: Benoît Ganne Date: Tue, 7 Jul 2020 16:32:22 +0200 Subject: vppinfra: enable STATIC_ASSERT with clang MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For some reason clang does not support &((struct foo*)0)->field in static assertion contrary to gcc. Use offsetof() macro implementation provided by both compilers instead. Type: fix Change-Id: I3311cdd29c5861e45dc0ef92f2bbd66242ca73b8 Signed-off-by: Benoît Ganne (cherry picked from commit 5e60c17f49082b7731778e81b58177177a31b58f) --- src/vppinfra/error_bootstrap.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/vppinfra/error_bootstrap.h') diff --git a/src/vppinfra/error_bootstrap.h b/src/vppinfra/error_bootstrap.h index 8dbbc7f359d..185f4c6c4af 100644 --- a/src/vppinfra/error_bootstrap.h +++ b/src/vppinfra/error_bootstrap.h @@ -108,11 +108,7 @@ do { \ } while (0) #endif /* __COVERITY */ -#if defined(__clang__) -#define STATIC_ASSERT(truth,...) -#else #define STATIC_ASSERT(truth,...) _Static_assert(truth, __VA_ARGS__) -#endif #define STATIC_ASSERT_SIZEOF(d, s) \ STATIC_ASSERT (sizeof (d) == s, "Size of " #d " must be " # s " bytes") -- cgit 1.2.3-korg