aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/numeric_range_matcher.cpp
blob: 855fbc19559c2d05cad5e8eb25f6b48410cfc595 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. 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>;

}