STATIC_ASSERT_EXPR() can be used to trigger compile time errors inside a
C expression.
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@4277
38d2e660-2303-0410-9eaa-
f027e97ec537
#define STATIC_ASSERT(condition) \
UNUSED_VAR(extern char, STATIC_ASSERTION_FAILED__[(condition) ? 1 : -1])
+/**
+ * Issue a compilation error if \a __cond is false (this can be used inside an
+ * expression).
+ */
+#define STATIC_ASSERT_EXPR(__cond) \
+ (sizeof(struct { int STATIC_ASSERTION_FAILED__:!!(__cond); }) * 0)
+
#ifndef ASSERT_TYPE_EQUAL
/** Ensure two variables have the same type. */
#define ASSERT_TYPE_EQUAL(var1, var2) \