aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/generationholder.cpp
blob: 07bde82f007aa0d828ddc36cd2073ff2f5f78091 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "generationholder.h"
#include "generation_hold_list.hpp"

namespace vespalib {

template class GenerationHoldList<GenerationHeldBase::UP, true, false>;

template void GenerationHolderParent::reclaim_internal
        <GenerationHolderParent::NoopFunc>(generation_t oldest_used_gen, NoopFunc func);

GenerationHeldBase::~GenerationHeldBase() = default;

GenerationHolder::GenerationHolder()
    : GenerationHolderParent()
{
}

}