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

}