Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #7288 from EOSIO/boost-1-70-0
Browse files Browse the repository at this point in the history
Changes for Boost 1_70_0
  • Loading branch information
heifner committed May 7, 2019
2 parents 463427d + a99cda4 commit 45d8b1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Expand Up @@ -82,8 +82,7 @@ class local_connection : public lib::enable_shared_from_this<local_connection> {
return socket::make_error_code(socket::error::invalid_state);
}

m_socket = lib::make_shared<lib::asio::local::stream_protocol::socket>(
lib::ref(*service));
m_socket = lib::make_shared<lib::asio::local::stream_protocol::socket>(*service);

m_state = READY;

Expand Down Expand Up @@ -266,8 +265,7 @@ class local_endpoint : public config::socket_type {
m_alog->write(log::alevel::devel,"asio::init_asio");

m_io_service = ptr;
m_acceptor = lib::make_shared<lib::asio::local::stream_protocol::acceptor>(
lib::ref(*m_io_service));
m_acceptor = lib::make_shared<lib::asio::local::stream_protocol::acceptor>(*m_io_service);

m_state = READY;
ec = lib::error_code();
Expand Down

0 comments on commit 45d8b1e

Please sign in to comment.