iw4x-client/deps/protobuf/third_party/benchmark/cmake/steady_clock.cpp

8 lines
136 B
C++
Raw Normal View History

2024-03-07 05:13:50 -05:00
#include <chrono>
int main() {
typedef std::chrono::steady_clock Clock;
Clock::time_point tp = Clock::now();
((void)tp);
}