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

}