|
|
|
|
|
by mananaysiempre
167 days ago
|
|
Not unless you write your own assert macro using C23 unreachable(), GNU C __builtin_unreachable(), MSVC __assume(0), or the like. The standard one is defined[1] to either explicitly check or completely ignore its argument. [1] https://port70.net/~nsz/c/c11/n1570.html#7.2 |
|
In Rust you can wrap core::hint::assert_unchecked similarly.