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

#include "singlenumericpostattribute.hpp"
#include "floatbase.h"
#include "integerbase.h"

#include <vespa/log/log.h>
LOG_SETUP(".searchlib.attribute.single_numeric_post_attribute");

namespace search {

template class SingleValueNumericPostingAttribute<EnumAttribute<IntegerAttributeTemplate<int8_t>>>;
template class SingleValueNumericPostingAttribute<EnumAttribute<IntegerAttributeTemplate<int16_t>>>;
template class SingleValueNumericPostingAttribute<EnumAttribute<IntegerAttributeTemplate<int32_t>>>;
template class SingleValueNumericPostingAttribute<EnumAttribute<IntegerAttributeTemplate<int64_t>>>;
template class SingleValueNumericPostingAttribute<EnumAttribute<FloatingPointAttributeTemplate<float>>>;
template class SingleValueNumericPostingAttribute<EnumAttribute<FloatingPointAttributeTemplate<double>>>;

} // namespace search