mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-11 16:16:42 +02:00
Use namespace "boost::asio" instead of "net"
This commit is contained in:
parent
989eb6ec8e
commit
4f29f000de
16 changed files with 79 additions and 74 deletions
|
@ -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_;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue