encfs/vendor/github.com/google/benchmark/cmake/steady_clock.cpp
Valient Gough 35f7c4772b Add "gbench" from "https://github.com/google/benchmark.git@v1.2.0"
git-vendor-name: gbench
git-vendor-dir: vendor/github.com/google/benchmark
git-vendor-repository: https://github.com/google/benchmark.git
git-vendor-ref: v1.2.0
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);
}