aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/entryref.cpp
blob: 1bf6fb09b9dfd69308812ff9847d325e108b9ed6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "entryref.hpp"
#include <vespa/vespalib/stllike/asciistream.h>

namespace vespalib::datastore {

template EntryRefT<24u, 8u>::EntryRefT(size_t, uint32_t);
template EntryRefT<31u, 1u>::EntryRefT(size_t, uint32_t);
template EntryRefT<22u,10u>::EntryRefT(size_t, uint32_t);
template EntryRefT<20u,12u>::EntryRefT(size_t, uint32_t);
template EntryRefT<19u,13u>::EntryRefT(size_t, uint32_t);
template EntryRefT<18u, 6u>::EntryRefT(size_t, uint32_t);
template EntryRefT<15u,17u>::EntryRefT(size_t, uint32_t);
template EntryRefT<10u,22u>::EntryRefT(size_t, uint32_t);
template EntryRefT<10u,10u>::EntryRefT(size_t, uint32_t);
template EntryRefT< 3u, 2u>::EntryRefT(size_t, uint32_t);

vespalib::asciistream & operator << (vespalib::asciistream & os, const EntryRef &ref) {
    return os << "EntryRef(" << ref.ref() << ")";
}

}