aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-10-11 16:52:30 +0200
committerGitHub <noreply@github.com>2022-10-11 16:52:30 +0200
commit274bcee5a55fb61a7c819e6be6acca554fe7a3ae (patch)
treed01ef596666f441c4f9871532aa462e3e4117bd0 /vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h
parent12a1252225e3dd606066250699789b0c342980a3 (diff)
parent79e553fb451b09437dad80070597fa317515ae3a (diff)
Merge pull request #24393 from vespa-engine/toregge/rename-icompactable-move-to-move-on-compactv8.67.17
Rename ICompactable::move to move_on_compact.
Diffstat (limited to 'vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h')
-rw-r--r--vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h b/vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h
index 04df88ab4b9..0f6d9ddfc9b 100644
--- a/vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h
+++ b/vespalib/src/vespa/vespalib/datastore/unique_store_allocator.h
@@ -35,7 +35,7 @@ public:
~UniqueStoreAllocator() override;
EntryRef allocate(const EntryType& value);
void hold(EntryRef ref);
- EntryRef move(EntryRef ref) override;
+ EntryRef move_on_compact(EntryRef ref) override;
const WrappedEntryType& get_wrapped(EntryRef ref) const {
RefType iRef(ref);
return *_store.template getEntry<WrappedEntryType>(iRef);