Home | History | Annotate | Download | only in compiler

Lines Matching full:condition

39 #define compiletime_assert(condition, msg) _Static_assert(condition, msg)
48 #define __compiletime_error_fallback(condition) do { } while (0)
51 #define __compiletime_assert(condition, msg, prefix, suffix) \
53 int __cond = !(condition); \
60 #define _compiletime_assert(condition, msg, prefix, suffix) \
61 __compiletime_assert(condition, msg, prefix, suffix)
63 #define compiletime_assert(condition, msg) \
64 _compiletime_assert(condition, msg, __compiletime_assert_, __LINE__)
68 #define compiletime_assert(condition, msg) do { } while (0)