mirror of
https://github.com/vgough/encfs.git
synced 2025-02-18 02:31:00 +01:00
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
8 lines
136 B
C++
8 lines
136 B
C++
#include <chrono>
|
|
|
|
int main() {
|
|
typedef std::chrono::steady_clock Clock;
|
|
Clock::time_point tp = Clock::now();
|
|
((void)tp);
|
|
}
|