aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/numeric_matcher.cpp
blob: f1871c90b8a46d20a617abc17fc2885068fb2467 (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 "numeric_matcher.hpp"

namespace search::attribute {

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

}