mirror of
https://github.com/google/benchmark.git
synced 2024-11-25 22:47:20 +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);
|
|
}
|