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

}