json/benchmarks/thirdparty/benchmark/cmake/steady_clock.cpp
2021-01-23 13:59:52 +01:00

8 lines
136 B
C++
Executable File

#include <chrono>
int main() {
typedef std::chrono::steady_clock Clock;
Clock::time_point tp = Clock::now();
((void)tp);
}