| 463 | |
| 464 | #if _WIN32 |
| 465 | std::shared_ptr<StatusDetail> StatusDetailFromWinError(int errnum) { |
| 466 | if (!errnum) { |
| 467 | return nullptr; |
| 468 | } |
| 469 | return std::make_shared<WinErrorDetail>(errnum); |
| 470 | } |
| 471 | #endif |
| 472 | |
| 473 | std::shared_ptr<StatusDetail> StatusDetailFromSignal(int signum) { |
no outgoing calls
no test coverage detected