aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/distributor/operations/idealstate/mergemetadata.cpp
blob: 09fec1a88fd28b69b7a1f1a14801cc409d7140ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "mergemetadata.h"
#include <vespa/vespalib/stllike/asciistream.h>

namespace storage::distributor {

vespalib::asciistream& operator<<(vespalib::asciistream& out, const MergeMetaData& e)
{
    return out << "MergeMetaData(" << e._nodeIndex << ")";
}

} // storage::distributor