aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/bucketdb/btree_lockable_map.cpp
blob: 06a0a9968a8c68d1e52669ab841ec386e4456684 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "btree_lockable_map.hpp"
#include <vespa/vespalib/datastore/buffer_type.hpp>

namespace storage::bucketdb {

template class BTreeLockableMap<StorageBucketInfo>; // Forced instantiation.

}

namespace vespalib::datastore {

template class BufferType<storage::bucketdb::StorageBucketInfo>;

}