Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
e93c63d468d36e67cb15d183ecc6b8216c87c138
/
.
/
libcxx
/
utils
/
google-benchmark
/
cmake
/
steady_clock.cpp
blob: 66d50d17e9e61f32cbe1df801906a5b8052ce279 [
file
] [
log
] [
blame
]
Eric Fiselier
b08d8b1
2016-07-19 23:07:03 +0000
[
diff
] [
blame
]
1
#include
<chrono>
2
3
int
main
()
{
4
typedef
std
::
chrono
::
steady_clock
Clock
;
5
Clock
::
time_point tp
=
Clock
::
now
();
6
((
void
)
tp
);
7
}