aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/array_store_dynamic_type_mapper.cpp
blob: 106a1f037d70e22a43471a06a6880f4648f35ba8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "array_store_dynamic_type_mapper.hpp"

namespace vespalib::datastore {

template class ArrayStoreDynamicTypeMapper<char>;
template class ArrayStoreDynamicTypeMapper<int8_t>;
template class ArrayStoreDynamicTypeMapper<int16_t>;
template class ArrayStoreDynamicTypeMapper<int32_t>;
template class ArrayStoreDynamicTypeMapper<int64_t>;
template class ArrayStoreDynamicTypeMapper<float>;
template class ArrayStoreDynamicTypeMapper<double>;
template class ArrayStoreDynamicTypeMapper<AtomicEntryRef>;

}