summaryrefslogtreecommitdiffstats
path: root/searchcorespi
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-11-19 12:37:16 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-11-19 12:38:27 +0000
commit5361472f495df07e9b1ae2af91c2f780ed8966df (patch)
tree78f044702c6dbf490c73fcc675ed0625478148a5 /searchcorespi
parente8c2faeb2c1feac0a3712592f4a55ce276d2fc60 (diff)
Add skeleton for NearestNeighborTerm in C++.
Diffstat (limited to 'searchcorespi')
-rw-r--r--searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp b/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
index b71927c714f..3584b0a5744 100644
--- a/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
+++ b/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
@@ -189,7 +189,6 @@ private:
void visit(ONear &) override { }
void visit(SameElement &) override { }
-
void visit(WeightedSetTerm &n) override { visitTerm(n); }
void visit(DotProduct &n) override { visitTerm(n); }
void visit(WandTerm &n) override { visitTerm(n); }
@@ -203,6 +202,7 @@ private:
void visit(SuffixTerm &n) override { visitTerm(n); }
void visit(PredicateQuery &n) override { visitTerm(n); }
void visit(RegExpTerm &n) override { visitTerm(n); }
+ void visit(NearestNeighborTerm &) override { }
public:
CreateBlueprintVisitor(const IIndexCollection &indexes,