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

#include "single_numeric_enum_search_context.hpp"

namespace search::attribute {

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

}