| 65 | |
| 66 | template<> |
| 67 | void Error::impl::Handle<spdlog::level::critical>(std::wstring_view message, std::wstring_view error_message, std::source_location location) |
| 68 | { |
| 69 | HandleCriticalCommon(message, error_message, location); |
| 70 | __fastfail(FAST_FAIL_FATAL_APP_EXIT); |
| 71 | } |
| 72 | |
| 73 | std::thread Error::impl::HandleCommon(spdlog::level::level_enum level, std::wstring_view message, std::wstring_view error_message, std::source_location location, Util::null_terminated_wstring_view title, std::wstring_view description, unsigned int type) |
| 74 | { |
nothing calls this directly
no outgoing calls
no test coverage detected