ORIGINAL
|
Compile-time error assertion utility. More...
#include <error.h>
Compile-time error assertion utility.
ERR | Exception type to associate with the static assertion (must inherit from error) |
TRIGGERING_CONDITION | Boolean condition triggering the assertion when true |
Enforces compile-time constraints by triggering static assertions with exception-specific error messages. The assertion fires when TRIGGERING_CONDITION evaluates to true.
@requires ExtendsOf<error, ERR> (ERR must inherit from error)