Merge pull request #5359

ef92620c socks: fix build with boost 1.70 (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2019-03-27 15:57:35 +02:00
commit 423d3bb86b
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ namespace socks
};
client::client(stream_type::socket&& proxy, socks::version ver)
: proxy_(std::move(proxy)), strand_(proxy_.get_io_service()), buffer_size_(0), buffer_(), ver_(ver)
: proxy_(std::move(proxy)), strand_(GET_IO_SERVICE(proxy_)), buffer_size_(0), buffer_(), ver_(ver)
{}
client::~client() {}