]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/opentelemetry-cpp/third_party/benchmark/cmake/steady_clock.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / benchmark / cmake / steady_clock.cpp
CommitLineData
1e59de90
TL
1#include <chrono>
2
3int main() {
4 typedef std::chrono::steady_clock Clock;
5 Clock::time_point tp = Clock::now();
6 ((void)tp);
7}