Skip to content

Commit cbed981

Browse files
committed
Run clang-format
1 parent 7e5eacc commit cbed981

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

include/fmt/chrono.h

+7-5
Original file line numberDiff line numberDiff line change
@@ -585,11 +585,13 @@ inline auto localtime(std::chrono::local_time<Duration> time) -> std::tm {
585585
using namespace std::chrono;
586586
using namespace fmt_detail;
587587

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
588+
# if FMT_USE_EARLIEST_TIME
589+
return localtime(detail::to_time_t(
590+
current_zone()->to_sys<Duration>(time, std::chrono::choose::earliest)));
591+
# else
592+
return localtime(detail::to_time_t(
593+
current_zone()->to_sys<Duration>(time, std::chrono::choose::latest)));
594+
# endif
593595
}
594596
#endif
595597

0 commit comments

Comments
 (0)