1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

core/assert: provide static_assert for c99

This commit is contained in:
Matthew Blue 2018-06-02 18:13:23 -04:00
parent 7529133558
commit 2bd1d7f045

View File

@ -114,9 +114,12 @@ NORETURN void _assert_failure(const char *file, unsigned line);
#define static_assert(...) _Static_assert(__VA_ARGS__)
#else
/**
* @brief static_assert dummy for c-version < c11
* @brief static_assert for c-version < c11
*
* Generates a division by zero compile error when cond is false
*/
#define static_assert(...) struct static_assert_dummy
#define static_assert(cond, ...) \
enum { static_assert_failed_on_div_by_0 = 1 / (!!(cond)) }
#endif
#endif