summaryrefslogtreecommitdiffstats
path: root/src/lib/dhcpsrv/cfg_hosts.cc
diff options
context:
space:
mode:
authorTomek Mrugalski <tomasz@isc.org>2017-04-24 19:57:01 +0200
committerTomek Mrugalski <tomasz@isc.org>2017-04-24 19:57:01 +0200
commit5d8cf0e35953aef4db8aff26d1bf4bd62bb76be3 (patch)
tree59c718e3cee4a3b96ca27ae0486961337841e7e1 /src/lib/dhcpsrv/cfg_hosts.cc
parent[5208a] return comments updated (diff)
downloadkea-5d8cf0e35953aef4db8aff26d1bf4bd62bb76be3.tar.xz
kea-5d8cf0e35953aef4db8aff26d1bf4bd62bb76be3.zip
[5208a] unused parameter warnings removed
Diffstat (limited to 'src/lib/dhcpsrv/cfg_hosts.cc')
-rw-r--r--src/lib/dhcpsrv/cfg_hosts.cc16
1 files changed, 9 insertions, 7 deletions
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);