| 50 | |
| 51 | template <typename... Args> |
| 52 | [[noreturn]] inline void error(fmt::string_view fstr, const Args&... args) |
| 53 | { |
| 54 | throw ErrorException{fmt::format(fmt::runtime(fstr), args...)}; |
| 55 | } |
| 56 | |
| 57 | extern void warning(const std::string msg); |
| 58 |
no outgoing calls