aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/testkit/test_comparators.cpp
blob: b670e1efcc52d94c50df4b73b07b76adcad8ed2a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Vespa.ai. 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 {

}