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

#include "small_array_buffer_type.hpp"
#include "buffer_type.hpp"

namespace vespalib::datastore {

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

}