aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/bucketdb/btree_lockable_map.cpp
blob: 74841c13419d45e779d4376ae81b7b67b6803365 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. 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>;

}