diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-07-06 18:13:28 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-07-06 18:13:28 +0200 |
| commit | c9f66dfabaf63bcb05a1aeef01387a904c3c017e (patch) | |
| tree | 8994a4efd8f7105dccf753047febbf126a86b488 | |
| parent | 160e8087963bfe045c2893690dc8110eaabfd9ff (diff) | |
| parent | 72287d121a5efbb455566d56612daab571a0141b (diff) | |
| download | monzero-core-c9f66dfabaf63bcb05a1aeef01387a904c3c017e.tar.gz monzero-core-c9f66dfabaf63bcb05a1aeef01387a904c3c017e.tar.xz monzero-core-c9f66dfabaf63bcb05a1aeef01387a904c3c017e.zip | |
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.h | 2 |
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(); |
