Parcourir la source

[5208a] unused parameter warnings removed

Tomek Mrugalski il y a 8 ans
Parent
commit
5d8cf0e359
1 fichiers modifiés avec 9 ajouts et 7 suppressions
  1. 9 7
      src/lib/dhcpsrv/cfg_hosts.cc

+ 9 - 7
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);