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

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

namespace storage::framework {

std::ostream& operator<<(std::ostream& out, const MicroSecTime & t) {
    return out << t.getTime();
}


vespalib::asciistream& operator<<(vespalib::asciistream& out, const MicroSecTime & t) {
    return out << t.getTime();
}

}