| 194 | */ |
| 195 | template <typename... Args> |
| 196 | windows_error(int error_code, string_view message, const Args&... args) { |
| 197 | init(error_code, message, make_format_args(args...)); |
| 198 | } |
| 199 | }; |
| 200 | |
| 201 | // Reports a Windows error without throwing an exception. |
nothing calls this directly
no test coverage detected