| 33 | namespace std |
| 34 | { |
| 35 | error_code make_error_code(future_errc ec) noexcept |
| 36 | { |
| 37 | return error_code{static_cast<int>(ec), future_category()}; |
| 38 | } |
| 39 | |
| 40 | error_condition make_error_condition(future_errc ec) noexcept |
| 41 | { |
no outgoing calls
no test coverage detected