aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/array_store_dynamic_type_mapper.cpp
blob: 84008fbdf2f4749e335d02295c4b70fb5c2920de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Vespa.ai. 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>;

}