Loading...
Searching...
No Matches
Go to the documentation of this file.
36#define RESTINIO_ENSURE_NOEXCEPT_CALL(expr) \
37 static_assert(noexcept(expr), "this call is expected to be noexcept: " #expr); \
65#define RESTINIO_STATIC_ASSERT_NOEXCEPT(expr) \
66 static_assert(noexcept(expr), #expr " is expected to be noexcept" )
92#define RESTINIO_STATIC_ASSERT_NOT_NOEXCEPT(expr) \
93 static_assert(!noexcept(expr), #expr " is not expected to be noexcept" )