brintos

brintos / llvm-project-archived public Read only

0
0
Text · 136 B · 66d50d1 Raw
8 lines · cpp
1#include <chrono>2 3int main() {4    typedef std::chrono::steady_clock Clock;5    Clock::time_point tp = Clock::now();6    ((void)tp);7}8