Searched defs:BUILD_BUG_ON (Results 1 – 3 of 3) sorted by relevance
6 #define BUILD_BUG_ON(p) ({ _Static_assert(!(p), "!(" #p ")"); }) macro8 #define BUILD_BUG_ON(p) ((void)sizeof(char[1 - 2 * !!(p)])) macro
32 #define BUILD_BUG_ON(cond) ({ _Static_assert(!(cond), "!(" #cond ")"); }) macro42 #define BUILD_BUG_ON(cond) ((void)BUILD_BUG_ON_ZERO(cond)) macro
44 #define BUILD_BUG_ON(p) ((void)sizeof(char[1 - 2 * !!(p)])) macro
Completed in 43 milliseconds