steady_clock.cpp 136 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 #include <chrono> int main() { typedef std::chrono::steady_clock Clock; Clock::time_point tp = Clock::now(); ((void)tp); }