You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I modified it like this: connection_ptr new_conn(new connection(acceptor_.get_executor().context()));
Then:
error: no matching function for call to ‘ecto_X::connection::connection(boost::asio::execution_context&)’
267 | connection_ptr new_conn(new connection(acceptor_.get_executor().context()));
... no known conversion for argument 1 from ‘boost::asio::execution_context’ to ‘ecto_X::connection&&’
The text was updated successfully, but these errors were encountered:
Camixxx
changed the title
catkin_make have error, in ubuntu20.04:/usr/bin/ld: /home/jillian/ROS/cat/devel/lib/libecto.so.0.6.12: undefined reference to
catkin_make have error about boost1.74
Sep 23, 2020
ecto/samples/experimental/necto.cpp:
connection_ptr new_conn(new connection(acceptor_.get_io_service()));
But acrroding to this:https://www.boost.org/doc/libs/1_74_0/doc/html/boost_asio/history.html
The previously deprecated get_io_context and get_io_service member functions have now been removed.
So I modified it like this:
connection_ptr new_conn(new connection(acceptor_.get_executor().context()));
Then:
The text was updated successfully, but these errors were encountered: