aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/single_numeric_enum_search_context.cpp
blob: 8104a9c6f6898952ada76144b7006bdabf5a834e (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 "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>;

}