]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[5208a] unused parameter warnings removed
authorTomek Mrugalski <tomasz@isc.org>
Mon, 24 Apr 2017 17:57:01 +0000 (19:57 +0200)
committerTomek Mrugalski <tomasz@isc.org>
Mon, 24 Apr 2017 17:57:01 +0000 (19:57 +0200)
src/lib/dhcpsrv/cfg_hosts.cc

index e1dc43e983ee4422bc60afa58af718495286be56..b7f52d405e4a7f3d3b9546a2dca83c050ca46d2f 100644 (file)
@@ -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);