Use namespace "boost::asio" instead of "net"

This commit is contained in:
badaix 2022-01-30 22:07:13 +01:00
parent 989eb6ec8e
commit 4f29f000de
16 changed files with 79 additions and 74 deletions

View file

@ -29,7 +29,6 @@
#include <deque>
using boost::asio::ip::tcp;
namespace net = boost::asio;
/// Endpoint for a connected control client.
/**
@ -55,7 +54,7 @@ protected:
tcp::socket socket_;
boost::asio::streambuf streambuf_;
net::strand<net::any_io_executor> strand_;
boost::asio::strand<boost::asio::any_io_executor> strand_;
std::deque<std::string> messages_;
};