aboutsummaryrefslogtreecommitdiffstats
path: root/searchcorespi
diff options
context:
space:
mode:
authorArne H Juul <arnej@yahooinc.com>2021-10-19 14:15:47 +0000
committerArne H Juul <arnej@yahooinc.com>2021-10-19 14:15:47 +0000
commit5bac27daa62f5b9136695a319a7ff5a7b8bcb602 (patch)
tree8486f4e3993a79a1ad200637882a079521a106c0 /searchcorespi
parent765d397cb65fdb3205c7ac5921fc89449c86bf07 (diff)
use same name for abstract node types
Diffstat (limited to 'searchcorespi')
-rw-r--r--searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp b/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
index 49348d77c08..5592215f9e2 100644
--- a/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
+++ b/searchcorespi/src/vespa/searchcorespi/index/indexcollection.cpp
@@ -188,6 +188,8 @@ private:
void visit(Near &) override { }
void visit(ONear &) override { }
void visit(SameElement &) override { }
+ void visit(TrueQueryNode &) override {}
+ void visit(FalseQueryNode &) override {}
void visit(WeightedSetTerm &n) override { visitTerm(n); }
void visit(DotProduct &n) override { visitTerm(n); }
@@ -203,8 +205,6 @@ private:
void visit(PredicateQuery &n) override { visitTerm(n); }
void visit(RegExpTerm &n) override { visitTerm(n); }
void visit(NearestNeighborTerm &n) override { visitTerm(n); }
- void visit(TrueQueryNode &) override {}
- void visit(FalseQueryNode &) override {}
public:
CreateBlueprintVisitor(const IIndexCollection &indexes,