encfs/cmake/steady_clock.cpp
Valient Gough a98123a3a7 Squashed 'vendor/github.com/google/benchmark/' content from commit 163ce4af
git-subtree-dir: vendor/github.com/google/benchmark
git-subtree-split: 163ce4af68fd7d100e7e54ab65abd50971183009
2017-08-06 22:36:13 -04:00

8 lines
136 B
C++

#include <chrono>
int main() {
typedef std::chrono::steady_clock Clock;
Clock::time_point tp = Clock::now();
((void)tp);
}