|
Sleipnir C++ API
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
11#define Assert(condition) \
14 throw std::invalid_argument( \
15 std::format("{}:{}: {}: Assertion `{}' failed.", __FILE__, __LINE__, \
16 __func__, #condition)); \
24#define Assert(condition) assert(condition)