mirror of
https://gitee.com/openharmony/third_party_benchmark
synced 2024-11-23 15:30:48 +00:00
8 lines
136 B
C++
8 lines
136 B
C++
#include <chrono>
|
|
|
|
int main() {
|
|
typedef std::chrono::steady_clock Clock;
|
|
Clock::time_point tp = Clock::now();
|
|
((void)tp);
|
|
}
|