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

#include "dynamic_array_buffer_type.hpp"

namespace vespalib::datastore {

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

}