diff options
author | Lee Clagett <code@leeclagett.com> | 2019-09-08 22:49:11 +0200 |
---|---|---|
committer | iDunk5400 <iDunk5400@users.noreply.github.com> | 2019-09-08 22:49:11 +0200 |
commit | 73f22c48e1fe923ff0d896b6e632c4f232f5f754 (patch) | |
tree | c2937f77b0bb696f79583bb330477b86360fa5c3 | |
parent | Merge pull request #5824 (diff) | |
download | monero-73f22c48e1fe923ff0d896b6e632c4f232f5f754.tar.xz |
depends: fix MacOS build with Clang 3.7.1
-rw-r--r-- | contrib/epee/include/net/abstract_tcp_server2.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/abstract_tcp_server2.inl b/contrib/epee/include/net/abstract_tcp_server2.inl index 12a87071a..8d96e4a84 100644 --- a/contrib/epee/include/net/abstract_tcp_server2.inl +++ b/contrib/epee/include/net/abstract_tcp_server2.inl @@ -154,7 +154,7 @@ PRAGMA_WARNING_DISABLE_VS(4355) } else { - const auto ip_{remote_ep.address().to_v6()}; + const auto ip_ = remote_ep.address().to_v6(); return start(is_income, is_multithreaded, ipv6_network_address{ip_, remote_ep.port()}); } CATCH_ENTRY_L0("connection<t_protocol_handler>::start()", false); |