| 30 | }; |
| 31 | |
| 32 | [[noreturn]] void GLOBED_DLL __cdecl _throw_cpp_error_hook(int code) { |
| 33 | throw std::system_error((int) codes[code], std::generic_category(), msgs[code]); |
| 34 | } |
| 35 | |
| 36 | static void fixThrowCppErrorStub() { |
| 37 | auto address = reinterpret_cast<void*>(&std::_Throw_Cpp_error); |
nothing calls this directly
no outgoing calls
no test coverage detected