2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-01 14:35:29 +00:00

[#103,!277] Fixed unused variable warning.

This commit is contained in:
Marcin Siodelski
2019-03-21 15:43:28 +01:00
parent 20e42e0707
commit a6d7390f9b

View File

@@ -37,13 +37,12 @@ public:
/// @brief Retrieves the audit entries later than specified time. /// @brief Retrieves the audit entries later than specified time.
/// ///
/// @param server_selector Server selector.
/// @param modification_time The lower bound time for which audit /// @param modification_time The lower bound time for which audit
/// entries should be returned. /// entries should be returned.
/// ///
/// @return Collection of audit entries later than specified time. /// @return Collection of audit entries later than specified time.
virtual db::AuditEntryCollection virtual db::AuditEntryCollection
getRecentAuditEntries(const db::ServerSelector& server_selector, getRecentAuditEntries(const db::ServerSelector&,
const boost::posix_time::ptime& modification_time) const { const boost::posix_time::ptime& modification_time) const {
db::AuditEntryCollection filtered_entries; db::AuditEntryCollection filtered_entries;