mirror of https://github.com/google/benchmark.git
7 lines
135 B
C++
7 lines
135 B
C++
|
#include <chrono>
|
||
|
|
||
|
int main() {
|
||
|
typedef std::chrono::steady_clock Clock;
|
||
|
Clock::time_point tp = Clock::now();
|
||
|
((void)tp);
|
||
|
}
|