aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/query/streaming/onear_query_node.cpp
blob: 45c04b411dc6d9327d387e6317b0f7be074e8947 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "onear_query_node.h"
#include "hit_iterator_pack.h"

namespace search::streaming {

bool
ONearQueryNode::evaluate() const
{
    return evaluate_helper<true>();
}

}