From: Tomek Mrugalski Date: Mon, 24 Apr 2017 17:57:01 +0000 (+0200) Subject: [5208a] unused parameter warnings removed X-Git-Tag: trac5212_base~10^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d8cf0e35953aef4db8aff26d1bf4bd62bb76be3;p=thirdparty%2Fkea.git [5208a] unused parameter warnings removed --- diff --git a/src/lib/dhcpsrv/cfg_hosts.cc b/src/lib/dhcpsrv/cfg_hosts.cc index e1dc43e983..b7f52d405e 100644 --- a/src/lib/dhcpsrv/cfg_hosts.cc +++ b/src/lib/dhcpsrv/cfg_hosts.cc @@ -689,25 +689,27 @@ CfgHosts::add6(const HostPtr& host) { } bool -CfgHosts::del(const SubnetID& subnet_id, const asiolink::IOAddress& addr) { +CfgHosts::del(const SubnetID& /*subnet_id*/, const asiolink::IOAddress& /*addr*/) { /// @todo: Implement host removal isc_throw(NotImplemented, "sorry, not implemented"); return (false); } bool -CfgHosts::del4(const SubnetID& subnet_id, - const Host::IdentifierType& identifier_type, - const uint8_t* identifier_begin, const size_t identifier_len) { +CfgHosts::del4(const SubnetID& /*subnet_id*/, + const Host::IdentifierType& /*identifier_type*/, + const uint8_t* /*identifier_begin*/, + const size_t /*identifier_len*/) { /// @todo: Implement host removal isc_throw(NotImplemented, "sorry, not implemented"); return (false); } bool -CfgHosts::del6(const SubnetID& subnet_id, - const Host::IdentifierType& identifier_type, - const uint8_t* identifier_begin, const size_t identifier_len) { +CfgHosts::del6(const SubnetID& /*subnet_id*/, + const Host::IdentifierType& /*identifier_type*/, + const uint8_t* /*identifier_begin*/, + const size_t /*identifier_len*/) { /// @todo: Implement host removal isc_throw(NotImplemented, "sorry, not implemented"); return (false);