mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-29 21:18:02 +00:00
[4294] Compilation fix for unused parameter
This commit is contained in:
parent
180a0b201d
commit
643ced7b1a
@ -123,6 +123,11 @@ LeaseMgr::startAddressStatsQuery4() {
|
||||
return(AddressStatsQuery4Ptr());
|
||||
}
|
||||
|
||||
bool
|
||||
AddressStatsQuery4::getNextRow(AddressStatsRow4& /*row*/) {
|
||||
return (false);
|
||||
}
|
||||
|
||||
void
|
||||
LeaseMgr::recountAddressStats6() {
|
||||
using namespace stats;
|
||||
@ -230,6 +235,10 @@ LeaseMgr::startAddressStatsQuery6() {
|
||||
return(AddressStatsQuery6Ptr());
|
||||
}
|
||||
|
||||
bool
|
||||
AddressStatsQuery6::getNextRow(AddressStatsRow6& /*row*/) {
|
||||
return (false);
|
||||
}
|
||||
|
||||
std::string
|
||||
LeaseMgr::getDBVersion() {
|
||||
|
@ -204,7 +204,7 @@ public:
|
||||
///
|
||||
/// @return True if a row was fetched, false if there are no
|
||||
/// more rows.
|
||||
virtual bool getNextRow(AddressStatsRow4& row) { return(false); };
|
||||
virtual bool getNextRow(AddressStatsRow4& row);
|
||||
};
|
||||
|
||||
/// @brief Defines a pointer to an AddressStatsQuery4.
|
||||
@ -271,7 +271,7 @@ public:
|
||||
///
|
||||
/// @return True if a row was fetched, false if there are no
|
||||
/// more rows.
|
||||
virtual bool getNextRow(AddressStatsRow6& row) { return (false); };
|
||||
virtual bool getNextRow(AddressStatsRow6& row);
|
||||
};
|
||||
|
||||
/// @brief Defines a pointer to an AddressStatsQuery6.
|
||||
|
Loading…
x
Reference in New Issue
Block a user