summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-08-13 20:55:47 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-08-13 23:30:47 +0200
commit5dba4860e298a8a4a1ef4886646abdcaca974c85 (patch)
treefd8a82bf37fb9313dcc5a5f2ae85339e424ddb7e /searchlib
parent7139eff78bb4278c28f5e2e568de7e6ab3adf633 (diff)
Factor out unique store allocator from unique store.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/reference_attribute.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/reference_attribute.cpp b/searchlib/src/vespa/searchlib/attribute/reference_attribute.cpp
index 82539214ea9..05ea57cf43a 100644
--- a/searchlib/src/vespa/searchlib/attribute/reference_attribute.cpp
+++ b/searchlib/src/vespa/searchlib/attribute/reference_attribute.cpp
@@ -476,8 +476,9 @@ namespace search::datastore {
using Reference = attribute::Reference;
+template class UniqueStoreAllocator<Reference, EntryRefT<22>>;
template class UniqueStore<Reference, EntryRefT<22>>;
-template class UniqueStoreBuilder<Reference, EntryRefT<22>>;
+template class UniqueStoreBuilder<UniqueStoreAllocator<Reference, EntryRefT<22>>>;
template class UniqueStoreSaver<Reference, EntryRefT<22>>;
}