 |
OGS
|
|
Go to the documentation of this file.
11#define OGS_FATAL(...) \
13 BaseLib::console->critical("{}:{} {}() ", __FILE__, __LINE__, \
14 __FUNCTION__, fmt::format(__VA_ARGS__)); \
19#define OGS_FATAL(...) \
21 auto const formatted_va_args = fmt::format(__VA_ARGS__); \
22 BaseLib::console->critical("{}:{} {}() ", __FILE__, __LINE__, \
23 __FUNCTION__, formatted_va_args); \
24 throw std::runtime_error(formatted_va_args); \