================ @@ -33,13 +33,33 @@ namespace sys { template <typename D = std::chrono::nanoseconds> using TimePoint = std::chrono::time_point<std::chrono::system_clock, D>; +// utc_clock and utc_time are only available since C++20. Add enough code to +// support formatting date/time in UTC. +class UtcClock : public std::chrono::system_clock {}; ---------------- ysyeda wrote:
I created a new PR for the UTC clock changes here: https://github.com/llvm/llvm-project/pull/67846 https://github.com/llvm/llvm-project/pull/65407 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits