[llvm] [cmake] Add possibility to use ChooseMSVCCRT.cmake when include LLVM library
[llvm-core.git] / utils / benchmark / cmake / steady_clock.cpp
blob66d50d17e9e61f32cbe1df801906a5b8052ce279
1 #include <chrono>
3 int main() {
4 typedef std::chrono::steady_clock Clock;
5 Clock::time_point tp = Clock::now();
6 ((void)tp);