diff options
author | luigi1111 <luigi1111w@gmail.com> | 2020-05-19 17:11:05 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-19 17:11:05 -0500 |
commit | da04c5fb48c12bfbc5c6e54c027ad1faaf9dae25 (patch) | |
tree | e9d92ee38aff40ae568420c4895453d0f168fae7 /src/device_trezor | |
parent | Merge pull request #6551 (diff) | |
parent | build: fix boost 1.73 compatibility (diff) | |
download | monero-da04c5fb48c12bfbc5c6e54c027ad1faaf9dae25.tar.xz |
Merge pull request #6532
f35ced6 build: fix boost 1.73 compatibility (selsta)
Diffstat (limited to 'src/device_trezor')
-rw-r--r-- | src/device_trezor/trezor/transport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device_trezor/trezor/transport.cpp b/src/device_trezor/trezor/transport.cpp index 52bee6c6c..51396d90a 100644 --- a/src/device_trezor/trezor/transport.cpp +++ b/src/device_trezor/trezor/transport.cpp @@ -711,7 +711,7 @@ namespace trezor{ // Start the asynchronous operation itself. The handle_receive function // used as a callback will update the ec and length variables. m_socket->async_receive_from(boost::asio::buffer(buffer), m_endpoint, - boost::bind(&UdpTransport::handle_receive, _1, _2, &ec, &length)); + boost::bind(&UdpTransport::handle_receive, boost::placeholders::_1, boost::placeholders::_2, &ec, &length)); // Block until the asynchronous operation has completed. do { |