aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/generationholder.cpp
blob: 9930cfedbe446ce0695c5e404f9c0f460679e7d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright Vespa.ai. 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()
{
}

}