2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 05:55:28 +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:
Thomas Markwalder
2022-06-21 13:54:49 -04:00
committed by Andrei Pavel
parent 0b3af58241
commit a516e85cd4

View File

@@ -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");
}