mirror of
https://github.com/vgough/encfs.git
synced 2024-11-25 17:33:19 +01:00
a98123a3a7
git-subtree-dir: vendor/github.com/google/benchmark git-subtree-split: 163ce4af68fd7d100e7e54ab65abd50971183009
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);
|
|
}
|