mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-09-01 14:35:29 +00:00
[#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
This commit is contained in:
committed by
Andrei Pavel
parent
0b3af58241
commit
a516e85cd4
@@ -2060,12 +2060,12 @@ Memfile_LeaseMgr::wipeLeases6(const SubnetID& subnet_id) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::string
|
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");
|
isc_throw(NotImplemented, "Memfile_LeaseMgr::checkLimits4() not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string
|
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");
|
isc_throw(NotImplemented, "Memfile_LeaseMgr::checkLimits4() not implemented");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user