diff --git a/HashTable.cpp b/HashTable.cpp index fc6f434..e3fa477 100644 --- a/HashTable.cpp +++ b/HashTable.cpp @@ -98,6 +98,13 @@ void ConflictSet::setOldestVersion(int64_t oldestVersion) { int64_t ConflictSet::getBytes() const { return -1; } +void ConflictSet::getMetricsV1(MetricsV1 **metrics, int *count) const { + *metrics = nullptr; + *count = 0; +} + +double ConflictSet::MetricsV1::getValue() const { return 0; } + ConflictSet::ConflictSet(int64_t oldestVersion) : impl(new(safe_malloc(sizeof(Impl))) Impl{oldestVersion}) {}