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

#include "iterators.h"

namespace search::queryeval {

RankedSearchIteratorBase::
RankedSearchIteratorBase(fef::TermFieldMatchDataArray matchData)
    : SearchIterator(),
      _matchData(std::move(matchData)),
      _needUnpack(1)
{ }

RankedSearchIteratorBase::~RankedSearchIteratorBase() = default;

}