@@ -1601,7 +1601,7 @@ namespace chrono {
1601
1601
1602
1602
constexpr hh_mm_ss() noexcept : hh_mm_ss{_Duration::zero()} {}
1603
1603
constexpr explicit hh_mm_ss(_Duration _Dur)
1604
- : _Is_neg{_Dur < _Duration::zero()}, //
1604
+ : _Is_neg{_Dur < _Duration::zero()},
1605
1605
_Hours{_Duration_cast_underflow_to_zero<_CHRONO hours>(_CHRONO abs(_Dur))},
1606
1606
_Mins{_Duration_cast_underflow_to_zero<_CHRONO minutes>(
1607
1607
_Remove_duration_part<_CHRONO hours>(_CHRONO abs(_Dur)))},
@@ -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) {
@@ -5816,60 +5814,46 @@ struct formatter<_CHRONO duration<_Rep, _Period>, _CharT>
5816
5814
: _Fill_tm_formatter<_CHRONO duration<_Rep, _Period>, _CharT> {};
5817
5815
5818
5816
template <class _CharT>
5819
- struct formatter<_CHRONO day, _CharT> //
5820
- : _Fill_tm_formatter<_CHRONO day, _CharT> {};
5817
+ struct formatter<_CHRONO day, _CharT> : _Fill_tm_formatter<_CHRONO day, _CharT> {};
5821
5818
5822
5819
template <class _CharT>
5823
- struct formatter<_CHRONO month, _CharT> //
5824
- : _Fill_tm_formatter<_CHRONO month, _CharT> {};
5820
+ struct formatter<_CHRONO month, _CharT> : _Fill_tm_formatter<_CHRONO month, _CharT> {};
5825
5821
5826
5822
template <class _CharT>
5827
- struct formatter<_CHRONO year, _CharT> //
5828
- : _Fill_tm_formatter<_CHRONO year, _CharT> {};
5823
+ struct formatter<_CHRONO year, _CharT> : _Fill_tm_formatter<_CHRONO year, _CharT> {};
5829
5824
5830
5825
template <class _CharT>
5831
- struct formatter<_CHRONO weekday, _CharT> //
5832
- : _Fill_tm_formatter<_CHRONO weekday, _CharT> {};
5826
+ struct formatter<_CHRONO weekday, _CharT> : _Fill_tm_formatter<_CHRONO weekday, _CharT> {};
5833
5827
5834
5828
template <class _CharT>
5835
- struct formatter<_CHRONO weekday_indexed, _CharT> //
5836
- : _Fill_tm_formatter<_CHRONO weekday_indexed, _CharT> {};
5829
+ struct formatter<_CHRONO weekday_indexed, _CharT> : _Fill_tm_formatter<_CHRONO weekday_indexed, _CharT> {};
5837
5830
5838
5831
template <class _CharT>
5839
- struct formatter<_CHRONO weekday_last, _CharT> //
5840
- : _Fill_tm_formatter<_CHRONO weekday_last, _CharT> {};
5832
+ struct formatter<_CHRONO weekday_last, _CharT> : _Fill_tm_formatter<_CHRONO weekday_last, _CharT> {};
5841
5833
5842
5834
template <class _CharT>
5843
- struct formatter<_CHRONO month_day, _CharT> //
5844
- : _Fill_tm_formatter<_CHRONO month_day, _CharT> {};
5835
+ struct formatter<_CHRONO month_day, _CharT> : _Fill_tm_formatter<_CHRONO month_day, _CharT> {};
5845
5836
5846
5837
template <class _CharT>
5847
- struct formatter<_CHRONO month_day_last, _CharT> //
5848
- : _Fill_tm_formatter<_CHRONO month_day_last, _CharT> {};
5838
+ struct formatter<_CHRONO month_day_last, _CharT> : _Fill_tm_formatter<_CHRONO month_day_last, _CharT> {};
5849
5839
5850
5840
template <class _CharT>
5851
- struct formatter<_CHRONO month_weekday, _CharT> //
5852
- : _Fill_tm_formatter<_CHRONO month_weekday, _CharT> {};
5841
+ struct formatter<_CHRONO month_weekday, _CharT> : _Fill_tm_formatter<_CHRONO month_weekday, _CharT> {};
5853
5842
5854
5843
template <class _CharT>
5855
- struct formatter<_CHRONO month_weekday_last, _CharT> //
5856
- : _Fill_tm_formatter<_CHRONO month_weekday_last, _CharT> {};
5844
+ struct formatter<_CHRONO month_weekday_last, _CharT> : _Fill_tm_formatter<_CHRONO month_weekday_last, _CharT> {};
5857
5845
5858
5846
template <class _CharT>
5859
- struct formatter<_CHRONO year_month, _CharT> //
5860
- : _Fill_tm_formatter<_CHRONO year_month, _CharT> {};
5847
+ struct formatter<_CHRONO year_month, _CharT> : _Fill_tm_formatter<_CHRONO year_month, _CharT> {};
5861
5848
5862
5849
template <class _CharT>
5863
- struct formatter<_CHRONO year_month_day, _CharT> //
5864
- : _Fill_tm_formatter<_CHRONO year_month_day, _CharT> {};
5850
+ struct formatter<_CHRONO year_month_day, _CharT> : _Fill_tm_formatter<_CHRONO year_month_day, _CharT> {};
5865
5851
5866
5852
template <class _CharT>
5867
- struct formatter<_CHRONO year_month_day_last, _CharT> //
5868
- : _Fill_tm_formatter<_CHRONO year_month_day_last, _CharT> {};
5853
+ struct formatter<_CHRONO year_month_day_last, _CharT> : _Fill_tm_formatter<_CHRONO year_month_day_last, _CharT> {};
5869
5854
5870
5855
template <class _CharT>
5871
- struct formatter<_CHRONO year_month_weekday, _CharT> //
5872
- : _Fill_tm_formatter<_CHRONO year_month_weekday, _CharT> {};
5856
+ struct formatter<_CHRONO year_month_weekday, _CharT> : _Fill_tm_formatter<_CHRONO year_month_weekday, _CharT> {};
5873
5857
5874
5858
template <class _CharT>
5875
5859
struct formatter<_CHRONO year_month_weekday_last, _CharT>
@@ -5880,12 +5864,10 @@ struct formatter<_CHRONO hh_mm_ss<_CHRONO duration<_Rep, _Period>>, _CharT>
5880
5864
: _Fill_tm_formatter<_CHRONO hh_mm_ss<_CHRONO duration<_Rep, _Period>>, _CharT> {};
5881
5865
5882
5866
template <class _CharT>
5883
- struct formatter<_CHRONO sys_info, _CharT> //
5884
- : _Fill_tm_formatter<_CHRONO sys_info, _CharT> {};
5867
+ struct formatter<_CHRONO sys_info, _CharT> : _Fill_tm_formatter<_CHRONO sys_info, _CharT> {};
5885
5868
5886
5869
template <class _CharT>
5887
- struct formatter<_CHRONO local_info, _CharT> //
5888
- : _Fill_tm_formatter<_CHRONO local_info, _CharT> {};
5870
+ struct formatter<_CHRONO local_info, _CharT> : _Fill_tm_formatter<_CHRONO local_info, _CharT> {};
5889
5871
5890
5872
template <class _Duration, class _CharT>
5891
5873
struct formatter<_CHRONO sys_time<_Duration>, _CharT> {
@@ -5974,8 +5956,7 @@ private:
5974
5956
};
5975
5957
5976
5958
template <class _Duration, class _CharT>
5977
- struct formatter<_CHRONO local_time<_Duration>, _CharT> //
5978
- : _Fill_tm_formatter<_CHRONO local_time<_Duration>, _CharT> {};
5959
+ struct formatter<_CHRONO local_time<_Duration>, _CharT> : _Fill_tm_formatter<_CHRONO local_time<_Duration>, _CharT> {};
5979
5960
5980
5961
template <class _Duration, class _CharT>
5981
5962
struct formatter<_CHRONO _Local_time_format_t<_Duration>, _CharT>
0 commit comments