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