libcxx

libcxx mirror with random patches
git clone https://git.neptards.moe/neptards/libcxx.git
Log | Files | Refs

steady_clock.cpp (136B)


      1 #include <chrono>
      2 
      3 int main() {
      4     typedef std::chrono::steady_clock Clock;
      5     Clock::time_point tp = Clock::now();
      6     ((void)tp);
      7 }