[history-tracker] add missing UpdateAgedEntries() method to EntryList (#11576)

Adds missing method `UpdateAgedEntries` for the template
specialization of `EntryList` when size is 0.
This commit is contained in:
Li Cao
2025-06-06 09:08:47 -07:00
committed by GitHub
parent 1662ca8001
commit 7d64173fd3
+1
View File
@@ -410,6 +410,7 @@ private:
Entry *AddNewEntry(void) { return nullptr; }
void AddNewEntry(const Entry &) {}
const Entry *Iterate(Iterator &, uint32_t &) const { return nullptr; }
void UpdateAgedEntries(void) {}
void RemoveAgedEntries(void) {}
};