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


#include "numeric_range_matcher.hpp"

namespace search::attribute {

template class NumericRangeMatcher<int8_t>;
template class NumericRangeMatcher<int16_t>;
template class NumericRangeMatcher<int32_t>;
template class NumericRangeMatcher<int64_t>;
template class NumericRangeMatcher<float>;
template class NumericRangeMatcher<double>;

}