aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/atomic_entry_ref.cpp
blob: b1504bb5aa3179e3093d7a34fa000c42a535839d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

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

namespace vespalib::datastore {

vespalib::asciistream & operator << (vespalib::asciistream & os, const AtomicEntryRef &ref) {
    return os << "AtomicEntryRef(" << ref.load_relaxed().ref() << ")";
}

}