I am trying to adapt one of the boost::asio examples to use c++11 / TR1 libraries where possible. The original code looks like this:
void start_accept()
{
tcp_connection::pointer new_connection =
tcp_connection::create(acceptor_.get_io_service());
acceptor_.async_accept(new_connection->socket(),
boost::bind(&tcp_server::handle_accept, this, new_connection,
boost::asio::placeholders::error));
}
If I replace boost::bind
with std::bind
as follows:
void start_accept()
{
tcp_connection::pointer new_connection =
tcp_connection::create(acceptor_.get_io_service());
acceptor_.async_accept(new_connection->socket(),
std::bind(&tcp_server::handle_accept, this, new_connection,
boost::asio::placeholders::error ) );
// std::bind(&tcp_server::handle_accept, this, new_connection, _1 ) );
}
I get a large error message, with ends with:
/usr/include/c++/4.4/tr1_impl/functional:1137: error: return-statement with a value, in function returning 'void'
I am using gcc version 4.4 with boost version 1.47
I expected boost::bind and std::bind to be interchangeable.
[=](const boost::system::error_code& error){ /*do code here or...*/ this->handle_accept(...)}
. Personally I've stopped using bind altogether and I just write it as a lambda whether the lambda calls a function or does stuff inline. My thought is: Why use a library feature when there's a language feature that does the same thing? I know this wasn't your question, just my $0.02 – Trapani