@@ -2989,12 +2989,10 @@ namespace chrono {
2989
2989
if constexpr (is_invocable_v<clock_time_conversion<_DestClock, _SourceClock>, _Tp>) {
2990
2990
return _Clock_cast_strategy::_Direct;
2991
2991
} else {
2992
- constexpr bool _Has_sys = _Has_two_step_conversion< //
2993
- clock_time_conversion<_DestClock, system_clock>, //
2992
+ constexpr bool _Has_sys = _Has_two_step_conversion<clock_time_conversion<_DestClock, system_clock>,
2994
2993
clock_time_conversion<system_clock, _SourceClock>, _Tp>;
2995
2994
2996
- constexpr bool _Has_utc = _Has_two_step_conversion< //
2997
- clock_time_conversion<_DestClock, utc_clock>, //
2995
+ constexpr bool _Has_utc = _Has_two_step_conversion<clock_time_conversion<_DestClock, utc_clock>,
2998
2996
clock_time_conversion<utc_clock, _SourceClock>, _Tp>;
2999
2997
3000
2998
if constexpr (_Has_sys && _Has_utc) {
@@ -5808,60 +5806,46 @@ struct formatter<_CHRONO duration<_Rep, _Period>, _CharT>
5808
5806
: _Fill_tm_formatter<_CHRONO duration<_Rep, _Period>, _CharT> {};
5809
5807
5810
5808
template <class _CharT>
5811
- struct formatter<_CHRONO day, _CharT> //
5812
- : _Fill_tm_formatter<_CHRONO day, _CharT> {};
5809
+ struct formatter<_CHRONO day, _CharT> : _Fill_tm_formatter<_CHRONO day, _CharT> {};
5813
5810
5814
5811
template <class _CharT>
5815
- struct formatter<_CHRONO month, _CharT> //
5816
- : _Fill_tm_formatter<_CHRONO month, _CharT> {};
5812
+ struct formatter<_CHRONO month, _CharT> : _Fill_tm_formatter<_CHRONO month, _CharT> {};
5817
5813
5818
5814
template <class _CharT>
5819
- struct formatter<_CHRONO year, _CharT> //
5820
- : _Fill_tm_formatter<_CHRONO year, _CharT> {};
5815
+ struct formatter<_CHRONO year, _CharT> : _Fill_tm_formatter<_CHRONO year, _CharT> {};
5821
5816
5822
5817
template <class _CharT>
5823
- struct formatter<_CHRONO weekday, _CharT> //
5824
- : _Fill_tm_formatter<_CHRONO weekday, _CharT> {};
5818
+ struct formatter<_CHRONO weekday, _CharT> : _Fill_tm_formatter<_CHRONO weekday, _CharT> {};
5825
5819
5826
5820
template <class _CharT>
5827
- struct formatter<_CHRONO weekday_indexed, _CharT> //
5828
- : _Fill_tm_formatter<_CHRONO weekday_indexed, _CharT> {};
5821
+ struct formatter<_CHRONO weekday_indexed, _CharT> : _Fill_tm_formatter<_CHRONO weekday_indexed, _CharT> {};
5829
5822
5830
5823
template <class _CharT>
5831
- struct formatter<_CHRONO weekday_last, _CharT> //
5832
- : _Fill_tm_formatter<_CHRONO weekday_last, _CharT> {};
5824
+ struct formatter<_CHRONO weekday_last, _CharT> : _Fill_tm_formatter<_CHRONO weekday_last, _CharT> {};
5833
5825
5834
5826
template <class _CharT>
5835
- struct formatter<_CHRONO month_day, _CharT> //
5836
- : _Fill_tm_formatter<_CHRONO month_day, _CharT> {};
5827
+ struct formatter<_CHRONO month_day, _CharT> : _Fill_tm_formatter<_CHRONO month_day, _CharT> {};
5837
5828
5838
5829
template <class _CharT>
5839
- struct formatter<_CHRONO month_day_last, _CharT> //
5840
- : _Fill_tm_formatter<_CHRONO month_day_last, _CharT> {};
5830
+ struct formatter<_CHRONO month_day_last, _CharT> : _Fill_tm_formatter<_CHRONO month_day_last, _CharT> {};
5841
5831
5842
5832
template <class _CharT>
5843
- struct formatter<_CHRONO month_weekday, _CharT> //
5844
- : _Fill_tm_formatter<_CHRONO month_weekday, _CharT> {};
5833
+ struct formatter<_CHRONO month_weekday, _CharT> : _Fill_tm_formatter<_CHRONO month_weekday, _CharT> {};
5845
5834
5846
5835
template <class _CharT>
5847
- struct formatter<_CHRONO month_weekday_last, _CharT> //
5848
- : _Fill_tm_formatter<_CHRONO month_weekday_last, _CharT> {};
5836
+ struct formatter<_CHRONO month_weekday_last, _CharT> : _Fill_tm_formatter<_CHRONO month_weekday_last, _CharT> {};
5849
5837
5850
5838
template <class _CharT>
5851
- struct formatter<_CHRONO year_month, _CharT> //
5852
- : _Fill_tm_formatter<_CHRONO year_month, _CharT> {};
5839
+ struct formatter<_CHRONO year_month, _CharT> : _Fill_tm_formatter<_CHRONO year_month, _CharT> {};
5853
5840
5854
5841
template <class _CharT>
5855
- struct formatter<_CHRONO year_month_day, _CharT> //
5856
- : _Fill_tm_formatter<_CHRONO year_month_day, _CharT> {};
5842
+ struct formatter<_CHRONO year_month_day, _CharT> : _Fill_tm_formatter<_CHRONO year_month_day, _CharT> {};
5857
5843
5858
5844
template <class _CharT>
5859
- struct formatter<_CHRONO year_month_day_last, _CharT> //
5860
- : _Fill_tm_formatter<_CHRONO year_month_day_last, _CharT> {};
5845
+ struct formatter<_CHRONO year_month_day_last, _CharT> : _Fill_tm_formatter<_CHRONO year_month_day_last, _CharT> {};
5861
5846
5862
5847
template <class _CharT>
5863
- struct formatter<_CHRONO year_month_weekday, _CharT> //
5864
- : _Fill_tm_formatter<_CHRONO year_month_weekday, _CharT> {};
5848
+ struct formatter<_CHRONO year_month_weekday, _CharT> : _Fill_tm_formatter<_CHRONO year_month_weekday, _CharT> {};
5865
5849
5866
5850
template <class _CharT>
5867
5851
struct formatter<_CHRONO year_month_weekday_last, _CharT>
@@ -5872,12 +5856,10 @@ struct formatter<_CHRONO hh_mm_ss<_CHRONO duration<_Rep, _Period>>, _CharT>
5872
5856
: _Fill_tm_formatter<_CHRONO hh_mm_ss<_CHRONO duration<_Rep, _Period>>, _CharT> {};
5873
5857
5874
5858
template <class _CharT>
5875
- struct formatter<_CHRONO sys_info, _CharT> //
5876
- : _Fill_tm_formatter<_CHRONO sys_info, _CharT> {};
5859
+ struct formatter<_CHRONO sys_info, _CharT> : _Fill_tm_formatter<_CHRONO sys_info, _CharT> {};
5877
5860
5878
5861
template <class _CharT>
5879
- struct formatter<_CHRONO local_info, _CharT> //
5880
- : _Fill_tm_formatter<_CHRONO local_info, _CharT> {};
5862
+ struct formatter<_CHRONO local_info, _CharT> : _Fill_tm_formatter<_CHRONO local_info, _CharT> {};
5881
5863
5882
5864
template <class _Duration, class _CharT>
5883
5865
struct formatter<_CHRONO sys_time<_Duration>, _CharT> {
@@ -5966,8 +5948,7 @@ private:
5966
5948
};
5967
5949
5968
5950
template <class _Duration, class _CharT>
5969
- struct formatter<_CHRONO local_time<_Duration>, _CharT> //
5970
- : _Fill_tm_formatter<_CHRONO local_time<_Duration>, _CharT> {};
5951
+ struct formatter<_CHRONO local_time<_Duration>, _CharT> : _Fill_tm_formatter<_CHRONO local_time<_Duration>, _CharT> {};
5971
5952
5972
5953
template <class _Duration, class _CharT>
5973
5954
struct formatter<_CHRONO _Local_time_format_t<_Duration>, _CharT>
0 commit comments