aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/testkit/test_comparators.cpp
blob: 1a084102ca8b6573a625c013be0ecf5dbec70852 (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 "test_comparators.h"

namespace std::chrono {

ostream & operator << (ostream & os, system_clock::time_point ts) {
    return os << ts.time_since_epoch() << "ns";
}

ostream & operator << (ostream & os, steady_clock::time_point ts) {
    return os << ts.time_since_epoch() << "ns";
}

}
namespace vespalib {

}