summaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/metrics/time_supplier.cpp
blob: 9d708e7f9be342cf2e8a98061a0e81f7fd9250c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "time_supplier.h"
#include <stdlib.h>

namespace vespalib::metrics {

// these should never be used for anything:

TimeSupplier::TimeStamp
TimeSupplier::now_stamp() const
{ abort(); }

double
TimeSupplier::stamp_to_s(TimeStamp) const
{ abort(); }

TimeSupplier::TimeSupplier()
{ abort(); }

} // namespace vespalib::metrics