| 342 | namespace error { |
| 343 | |
| 344 | inline boost::system::error_code make_error_code(basic_errors e) |
| 345 | { |
| 346 | return boost::system::error_code( |
| 347 | static_cast<int>(e), get_system_category()); |
| 348 | } |
| 349 | |
| 350 | inline boost::system::error_code make_error_code(netdb_errors e) |
| 351 | { |