aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/maintenance/prioritizedbucket.cpp
blob: 48014959f3c19850d3dfe166833e1dac1ac415c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "prioritizedbucket.h"
#include <iostream>

namespace storage::distributor {

const PrioritizedBucket PrioritizedBucket::INVALID = PrioritizedBucket();

std::ostream&
operator<<(std::ostream& os, const PrioritizedBucket& bucket)
{
    os << bucket.toString();
    return os;
}

}