From 64176214a0e8bafb2bbda091a6865cf757c2a7f7 Mon Sep 17 00:00:00 2001 From: guoshichao Date: Tue, 10 Oct 2023 19:49:49 +0800 Subject: [PATCH] assert: add compile_assert macro Signed-off-by: guoshichao --- include/assert.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/assert.h b/include/assert.h index f80b657840..c2b8a0fab5 100644 --- a/include/assert.h +++ b/include/assert.h @@ -152,6 +152,8 @@ # endif #endif +#define COMPILE_TIME_ASSERT(x) static_assert(x, "compile time assert failed") + /* Force a compilation error if condition is true, but also produce a * result (of value 0 and type int), so the expression can be used * e.g. in a structure initializer (or where-ever else comma expressions