// // Fatal.cpp // SDLTest // // Created by Даниил Виноградов on 14.03.2023. // #include namespace NXKit { [[noreturn]] void fatal(const std::string& message) { // brls::Logger::error("Fatal error: {}", message); printf("%s\n", message.c_str()); throw std::logic_error(message); } }