| 299 | namespace error { |
| 300 | |
| 301 | inline asio::error_code make_error_code(basic_errors e) |
| 302 | { |
| 303 | return asio::error_code( |
| 304 | static_cast<int>(e), get_system_category()); |
| 305 | } |
| 306 | |
| 307 | inline asio::error_code make_error_code(netdb_errors e) |
| 308 | { |
no test coverage detected