summaryrefslogtreecommitdiffstats
path: root/searchcorespi
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-11-19 14:16:03 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-11-19 14:16:03 +0000
commit9f2c0a443e61d0790b1b87b7126fcfe6c7d6e951 (patch)
tree703cc2876f8d72badc2734ca314b66b153adbe44 /searchcorespi
parent5361472f495df07e9b1ae2af91c2f780ed8966df (diff)
Push handling of NearestNeighborTerm down to AttributeBlueprintFactory.
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 3584b0a5744..12128a3df18 100644
--- a/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
+++ b/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
@@ -202,7 +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 { }
+ void visit(NearestNeighborTerm &n) override { visitTerm(n); }
public:
CreateBlueprintVisitor(const IIndexCollection &indexes,