Browse Source

fixed build with boost >= 1.70

pull/37/head
orignal 4 years ago
parent
commit
21cf573bd6
  1. 4
      src/bitcoinrpc.cpp

4
src/bitcoinrpc.cpp

@ -630,7 +630,11 @@ class AcceptedConnectionImpl : public AcceptedConnection @@ -630,7 +630,11 @@ class AcceptedConnectionImpl : public AcceptedConnection
{
public:
AcceptedConnectionImpl(
#if (BOOST_VERSION >= 107000) // boost >= 1.70
asio::io_context& io_service,
#else
asio::io_service& io_service,
#endif
ssl::context &context,
bool fUseSSL) :
sslStream(io_service, context),

Loading…
Cancel
Save