2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-31 08:22:15 +00:00
Files
parser/benchmark-v1.1.0/cmake/steady_clock.cpp
2017-04-20 21:01:31 -05:00

8 lines
136 B
C++

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