aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/large_array_buffer_type.cpp
blob: f4ccb27abad9c9362c4aa3c7c6ef7395c5ef55c7 (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 "large_array_buffer_type.hpp"
#include "buffer_type.hpp"

namespace vespalib::datastore {

template class BufferType<Array<uint8_t>>;
template class BufferType<Array<uint32_t>>;
template class BufferType<Array<int32_t>>;
template class BufferType<Array<std::string>>;
template class BufferType<Array<AtomicEntryRef>>;

template class LargeArrayBufferType<uint8_t>;
template class LargeArrayBufferType<uint32_t>;
template class LargeArrayBufferType<int32_t>;
template class LargeArrayBufferType<std::string>;
template class LargeArrayBufferType<AtomicEntryRef>;

}