aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/btree/btreenodeallocator.cpp
blob: 7e7427616f853fc0fa5660e290357c256f08b37e (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 "btreenodeallocator.hpp"
#include <vespa/vespalib/util/array.hpp>

template class vespalib::Array<vespalib::datastore::EntryRef>;

namespace vespalib::btree {

template class BTreeNodeAllocator<uint32_t, uint32_t, NoAggregated,
                                  BTreeDefaultTraits::INTERNAL_SLOTS,
                                  BTreeDefaultTraits::LEAF_SLOTS>;
template class BTreeNodeAllocator<uint32_t, BTreeNoLeafData, NoAggregated,
                                  BTreeDefaultTraits::INTERNAL_SLOTS,
                                  BTreeDefaultTraits::LEAF_SLOTS>;
template class BTreeNodeAllocator<uint32_t, int32_t, MinMaxAggregated,
                                  BTreeDefaultTraits::INTERNAL_SLOTS,
                                  BTreeDefaultTraits::LEAF_SLOTS>;

}