aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-07-06 18:13:28 +0200
committerRiccardo Spagni <ric@spagni.net>2016-07-06 18:13:28 +0200
commitc9f66dfabaf63bcb05a1aeef01387a904c3c017e (patch)
tree8994a4efd8f7105dccf753047febbf126a86b488
parentMerge pull request #875 (diff)
parentcontrib: epee: add missing noexcept spec to class decl (diff)
downloadmonero-c9f66dfabaf63bcb05a1aeef01387a904c3c017e.tar.xz
Merge pull request #876
72287d1 contrib: epee: add missing noexcept spec to class decl (redfish)
-rw-r--r--contrib/epee/include/net/abstract_tcp_server2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/abstract_tcp_server2.h b/contrib/epee/include/net/abstract_tcp_server2.h
index 80f3f6db0..cb387d39f 100644
--- a/contrib/epee/include/net/abstract_tcp_server2.h
+++ b/contrib/epee/include/net/abstract_tcp_server2.h
@@ -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();