Loading...
Searching...
No Matches
Go to the documentation of this file.
5#define CONCAT_IMPL(a, b) a##b
6#define CONCAT(a, b) CONCAT_IMPL(a, b)
8#define STRINGIFY_IMPL(a) #a
9#define STRINGIFY(a) STRINGIFY_IMPL(a)
11#define TRY_OR_THROW(expr, ...) \
13 const auto& res__ref = (expr); \
15 throw ContextInternalError{res__ref.error() __VA_OPT__(, ) __VA_ARGS__}; \