mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
contrib: epee: add missing noexcept spec to class decl
The noexcept specs were added to make GCC 6.1.1 happy (#846), but this one was missing (because GCC did not complain about it on Linux, but does complain on OSX).
This commit is contained in:
parent
de91bb75a1
commit
72287d121a
@ -95,7 +95,7 @@ namespace net_utils
|
||||
i_connection_filter * &pfilter
|
||||
,t_connection_type connection_type);
|
||||
|
||||
virtual ~connection();
|
||||
virtual ~connection() noexcept(false);
|
||||
/// Get the socket associated with the connection.
|
||||
boost::asio::ip::tcp::socket& socket();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user