1
0
mirror of https://github.com/nlohmann/json.git synced 2026-07-29 07:03:02 +04:00
Files
json/benchmarks/thirdparty/benchmark/cmake/steady_clock.cpp
T
2018-01-18 22:00:32 +01:00

8 lines
136 B
C++

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