summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/common/documentlocations.cpp
blob: cd3cb15a44639a90634002db45350c0dd8d3dca8 (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 "documentlocations.h"
#include <vespa/searchlib/attribute/attributeguard.h>
#include <vespa/searchlib/attribute/attributevector.h>

namespace search::common {

DocumentLocations::DocumentLocations()
    : _vec(nullptr)
{
}

DocumentLocations::~DocumentLocations() = default;

DocumentLocations::DocumentLocations(DocumentLocations &&) = default;
DocumentLocations & DocumentLocations::operator = (DocumentLocations &&) = default;


}