From: Thomas Markwalder Date: Tue, 21 Jun 2022 17:54:49 +0000 (-0400) Subject: [#2444] Comments around unused parameter X-Git-Tag: Kea-2.1.7~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a516e85cd460304c9946d296344d37a6f796eb3b;p=thirdparty%2Fkea.git [#2444] Comments around unused parameter src/lib/dhcpsrv/memfile_lease_mgr.cc Memfile_LeaseMgr::checkLimits4() Memfile_LeaseMgr::checkLimits6() - commented out temporarily unused user_context parameter --- diff --git a/src/lib/dhcpsrv/memfile_lease_mgr.cc b/src/lib/dhcpsrv/memfile_lease_mgr.cc index f1337b5bcb..c0e20c127c 100644 --- a/src/lib/dhcpsrv/memfile_lease_mgr.cc +++ b/src/lib/dhcpsrv/memfile_lease_mgr.cc @@ -2060,12 +2060,12 @@ Memfile_LeaseMgr::wipeLeases6(const SubnetID& subnet_id) { } std::string -Memfile_LeaseMgr::checkLimits4(ConstElementPtr const& user_context) const { +Memfile_LeaseMgr::checkLimits4(ConstElementPtr const& /* user_context */) const { isc_throw(NotImplemented, "Memfile_LeaseMgr::checkLimits4() not implemented"); } std::string -Memfile_LeaseMgr::checkLimits6(ConstElementPtr const& user_context) const { +Memfile_LeaseMgr::checkLimits6(ConstElementPtr const& /* user_context */) const { isc_throw(NotImplemented, "Memfile_LeaseMgr::checkLimits4() not implemented"); }