Implement get{,Oldest}Version

This commit is contained in:
2024-05-09 13:39:54 -07:00
parent bce4a8b2d8
commit a36c96d7c2

View File

@@ -993,6 +993,12 @@ VersionedMap::Iterator VersionedMap::end(int64_t version) const {
return result;
}
int64_t VersionedMap::getVersion() const { return impl->latestVersion; }
int64_t VersionedMap::getOldestVersion() const { return impl->oldestVersion; }
// TODO implement getBytes
// ==================== END IMPLEMENTATION ====================
// GCOVR_EXCL_START