]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - utils/google-benchmark/cmake/steady_clock.cpp
Vendor import of libc++ trunk r290819:
[FreeBSD/FreeBSD.git] / utils / google-benchmark / cmake / steady_clock.cpp
1 #include <chrono>
2
3 int main() {
4     typedef std::chrono::steady_clock Clock;
5     Clock::time_point tp = Clock::now();
6     ((void)tp);
7 }