Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
6defdeb6d04c6b0fbe6b9ac7ef16edb8f253de92
/
.
/
third_party
/
google-benchmark
/
cmake
/
steady_clock.cpp
blob: 66d50d17e9e61f32cbe1df801906a5b8052ce279 [
file
] [
log
] [
blame
]
Austin Schuh
cbc1740
2019-01-21 21:00:30 -0800
[
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
}