8ae5fc5
1
2
3
4
5
6
7
8
#include <chrono> int main() { typedef std::chrono::steady_clock Clock; Clock::time_point tp = Clock::now(); ((void)tp); }