diff options
author | Francis Dupont <fdupont@isc.org> | 2018-11-08 12:02:04 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2018-11-08 12:02:04 +0100 |
commit | 633e05b6739f7baa84cb529cc40d8abbba83de72 (patch) | |
tree | c1d96d98f1888071a4b37247ecf1a1803f9c0e8f /src/lib/http/tests | |
parent | [#115,!48] exception throwing replaced with gentler error logs (diff) | |
download | kea-633e05b6739f7baa84cb529cc40d8abbba83de72.tar.xz kea-633e05b6739f7baa84cb529cc40d8abbba83de72.zip |
Unused argument259-libyang-adapt-authoritative_base
Diffstat (limited to 'src/lib/http/tests')
-rw-r--r-- | src/lib/http/tests/server_client_unittests.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/http/tests/server_client_unittests.cc b/src/lib/http/tests/server_client_unittests.cc index 527f739ff8..fe88cc0601 100644 --- a/src/lib/http/tests/server_client_unittests.cc +++ b/src/lib/http/tests/server_client_unittests.cc @@ -1285,7 +1285,7 @@ TEST_F(HttpClientTest, clientConnectTimeout) { // try to send a request to the server. This simulates the // case of connect() taking very long and should eventually // cause the transaction to time out. - [](const boost::system::error_code& ec) { + [](const boost::system::error_code& /*ec*/) { return (false); })); |