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

#include "btreeinserter.hpp"
#include "btreenode.hpp"

namespace vespalib::btree {

template class BTreeInserter<uint32_t, uint32_t, NoAggregated>;
template class BTreeInserter<uint32_t, BTreeNoLeafData, NoAggregated>;
template class BTreeInserter<uint32_t, int32_t, MinMaxAggregated,
                             std::less<uint32_t>, BTreeDefaultTraits, MinMaxAggrCalc>;

}