aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/util/fileutil.hpp
blob: 1a4ef9c52b6478a4ab265dc5109e86f0d1204f7e (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
24
25
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "fileutil.h"

namespace search {

template <typename T>
SequentialReadModifyWriteVector<T>::SequentialReadModifyWriteVector()
    : Vector(),
      _rp(0),
      _wp(0)
{ }

template <typename T>
SequentialReadModifyWriteVector<T>::SequentialReadModifyWriteVector(size_t sz)
    : Vector(sz),
      _rp(0),
      _wp(0)
{ }

template <typename T>
SequentialReadModifyWriteVector<T>::~SequentialReadModifyWriteVector() = default;

}