Need to use asio::error_code in non-boost documentation.

This commit is contained in:
chris_kohlhoff 2008-07-17 23:56:32 +00:00
parent 9c3f3ffdf2
commit cb71652519

View File

@ -26,7 +26,7 @@ server, to receive the first line of an HTTP request from a client:
boost::bind(&http_connection::handle_request_line, this, _1));
}
void handle_request_line(boost::system::error_code ec)
void handle_request_line(asio::error_code ec)
{
if (!ec)
{