We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e5eacc commit cbed981Copy full SHA for cbed981
include/fmt/chrono.h
@@ -585,11 +585,13 @@ inline auto localtime(std::chrono::local_time<Duration> time) -> std::tm {
585
using namespace std::chrono;
586
using namespace fmt_detail;
587
588
-#if FMT_USE_EARLIEST_TIME
589
- return localtime(detail::to_time_t(current_zone()->to_sys<Duration>(time, std::chrono::choose::earliest)));
590
-#else
591
- return localtime(detail::to_time_t(current_zone()->to_sys<Duration>(time, std::chrono::choose::latest)));
592
-#endif
+# if FMT_USE_EARLIEST_TIME
+ return localtime(detail::to_time_t(
+ current_zone()->to_sys<Duration>(time, std::chrono::choose::earliest)));
+# else
593
+ current_zone()->to_sys<Duration>(time, std::chrono::choose::latest)));
594
+# endif
595
}
596
#endif
597
0 commit comments