summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2020-04-14 12:14:17 +0200
committerGitHub <noreply@github.com>2020-04-14 12:14:17 +0200
commitd6a43ad477c7a8f0e16e7f3152d47ec9bed5bdee (patch)
tree8cc7b3be6ca5753ec9e898028274593c963e2f86 /searchlib
parentc95bd438e07bb643afe51d91730985aec1f9ef24 (diff)
parentf4288515c9b553c8bbdea5dca1c49e92da0ebfc2 (diff)
Merge pull request #12896 from vespa-engine/toregge/add-explicit-instantiation-of-rcuvectorbase-with-atomicentryref-param
Add explicit instantiation of RcuVectorBase<search::datastore::AtomicEntryRef>.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/vespa/searchlib/tensor/hnsw_graph.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/searchlib/src/vespa/searchlib/tensor/hnsw_graph.cpp b/searchlib/src/vespa/searchlib/tensor/hnsw_graph.cpp
index b6b3e670f08..10113160263 100644
--- a/searchlib/src/vespa/searchlib/tensor/hnsw_graph.cpp
+++ b/searchlib/src/vespa/searchlib/tensor/hnsw_graph.cpp
@@ -81,3 +81,9 @@ HnswGraph::histograms() const
}
} // namespace
+
+namespace vespalib {
+
+template class RcuVectorBase<search::datastore::AtomicEntryRef>;
+
+}