@@ -698,7 +698,7 @@ __format_chrono(const _Tp& __value,
698
698
} // namespace __formatter
699
699
700
700
template <__fmt_char_type _CharT>
701
- struct _LIBCPP_TEMPLATE_VIS __formatter_chrono {
701
+ struct __formatter_chrono {
702
702
public:
703
703
template <class _ParseContext >
704
704
_LIBCPP_HIDE_FROM_ABI constexpr typename _ParseContext::iterator
@@ -716,7 +716,7 @@ struct _LIBCPP_TEMPLATE_VIS __formatter_chrono {
716
716
};
717
717
718
718
template <class _Duration , __fmt_char_type _CharT>
719
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::sys_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
719
+ struct formatter <chrono::sys_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
720
720
public:
721
721
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
722
722
@@ -730,7 +730,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::sys_time<_Duration>, _CharT> : pub
730
730
# if _LIBCPP_HAS_EXPERIMENTAL_TZDB
731
731
732
732
template <class _Duration , __fmt_char_type _CharT>
733
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::utc_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
733
+ struct formatter <chrono::utc_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
734
734
public:
735
735
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
736
736
@@ -741,7 +741,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::utc_time<_Duration>, _CharT> : pub
741
741
};
742
742
743
743
template <class _Duration , __fmt_char_type _CharT>
744
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::tai_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
744
+ struct formatter <chrono::tai_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
745
745
public:
746
746
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
747
747
@@ -752,7 +752,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::tai_time<_Duration>, _CharT> : pub
752
752
};
753
753
754
754
template <class _Duration , __fmt_char_type _CharT>
755
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::gps_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
755
+ struct formatter <chrono::gps_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
756
756
public:
757
757
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
758
758
@@ -766,7 +766,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::gps_time<_Duration>, _CharT> : pub
766
766
# endif // _LIBCPP_HAS_TIME_ZONE_DATABASE && _LIBCPP_HAS_FILESYSTEM
767
767
768
768
template <class _Duration , __fmt_char_type _CharT>
769
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::file_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
769
+ struct formatter <chrono::file_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
770
770
public:
771
771
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
772
772
@@ -777,7 +777,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::file_time<_Duration>, _CharT> : pu
777
777
};
778
778
779
779
template <class _Duration , __fmt_char_type _CharT>
780
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::local_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
780
+ struct formatter <chrono::local_time<_Duration>, _CharT> : public __formatter_chrono<_CharT> {
781
781
public:
782
782
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
783
783
@@ -811,7 +811,7 @@ struct formatter<chrono::duration<_Rep, _Period>, _CharT> : public __formatter_c
811
811
};
812
812
813
813
template <__fmt_char_type _CharT>
814
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::day, _CharT> : public __formatter_chrono<_CharT> {
814
+ struct formatter <chrono::day, _CharT> : public __formatter_chrono<_CharT> {
815
815
public:
816
816
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
817
817
@@ -822,7 +822,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::day, _CharT> : public __formatter_
822
822
};
823
823
824
824
template <__fmt_char_type _CharT>
825
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month, _CharT> : public __formatter_chrono<_CharT> {
825
+ struct formatter <chrono::month, _CharT> : public __formatter_chrono<_CharT> {
826
826
public:
827
827
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
828
828
@@ -833,7 +833,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month, _CharT> : public __formatte
833
833
};
834
834
835
835
template <__fmt_char_type _CharT>
836
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year, _CharT> : public __formatter_chrono<_CharT> {
836
+ struct formatter <chrono::year, _CharT> : public __formatter_chrono<_CharT> {
837
837
public:
838
838
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
839
839
@@ -844,7 +844,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year, _CharT> : public __formatter
844
844
};
845
845
846
846
template <__fmt_char_type _CharT>
847
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday, _CharT> : public __formatter_chrono<_CharT> {
847
+ struct formatter <chrono::weekday, _CharT> : public __formatter_chrono<_CharT> {
848
848
public:
849
849
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
850
850
@@ -855,7 +855,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday, _CharT> : public __format
855
855
};
856
856
857
857
template <__fmt_char_type _CharT>
858
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday_indexed, _CharT> : public __formatter_chrono<_CharT> {
858
+ struct formatter <chrono::weekday_indexed, _CharT> : public __formatter_chrono<_CharT> {
859
859
public:
860
860
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
861
861
@@ -866,7 +866,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday_indexed, _CharT> : public
866
866
};
867
867
868
868
template <__fmt_char_type _CharT>
869
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday_last, _CharT> : public __formatter_chrono<_CharT> {
869
+ struct formatter <chrono::weekday_last, _CharT> : public __formatter_chrono<_CharT> {
870
870
public:
871
871
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
872
872
@@ -877,7 +877,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday_last, _CharT> : public __f
877
877
};
878
878
879
879
template <__fmt_char_type _CharT>
880
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_day, _CharT> : public __formatter_chrono<_CharT> {
880
+ struct formatter <chrono::month_day, _CharT> : public __formatter_chrono<_CharT> {
881
881
public:
882
882
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
883
883
@@ -888,7 +888,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_day, _CharT> : public __form
888
888
};
889
889
890
890
template <__fmt_char_type _CharT>
891
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_day_last, _CharT> : public __formatter_chrono<_CharT> {
891
+ struct formatter <chrono::month_day_last, _CharT> : public __formatter_chrono<_CharT> {
892
892
public:
893
893
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
894
894
@@ -899,7 +899,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_day_last, _CharT> : public _
899
899
};
900
900
901
901
template <__fmt_char_type _CharT>
902
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_weekday, _CharT> : public __formatter_chrono<_CharT> {
902
+ struct formatter <chrono::month_weekday, _CharT> : public __formatter_chrono<_CharT> {
903
903
public:
904
904
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
905
905
@@ -910,7 +910,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_weekday, _CharT> : public __
910
910
};
911
911
912
912
template <__fmt_char_type _CharT>
913
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_weekday_last, _CharT> : public __formatter_chrono<_CharT> {
913
+ struct formatter <chrono::month_weekday_last, _CharT> : public __formatter_chrono<_CharT> {
914
914
public:
915
915
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
916
916
@@ -921,7 +921,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_weekday_last, _CharT> : publ
921
921
};
922
922
923
923
template <__fmt_char_type _CharT>
924
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month, _CharT> : public __formatter_chrono<_CharT> {
924
+ struct formatter <chrono::year_month, _CharT> : public __formatter_chrono<_CharT> {
925
925
public:
926
926
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
927
927
@@ -932,7 +932,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month, _CharT> : public __for
932
932
};
933
933
934
934
template <__fmt_char_type _CharT>
935
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_day, _CharT> : public __formatter_chrono<_CharT> {
935
+ struct formatter <chrono::year_month_day, _CharT> : public __formatter_chrono<_CharT> {
936
936
public:
937
937
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
938
938
@@ -943,7 +943,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_day, _CharT> : public _
943
943
};
944
944
945
945
template <__fmt_char_type _CharT>
946
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_day_last, _CharT> : public __formatter_chrono<_CharT> {
946
+ struct formatter <chrono::year_month_day_last, _CharT> : public __formatter_chrono<_CharT> {
947
947
public:
948
948
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
949
949
@@ -954,7 +954,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_day_last, _CharT> : pub
954
954
};
955
955
956
956
template <__fmt_char_type _CharT>
957
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_weekday, _CharT> : public __formatter_chrono<_CharT> {
957
+ struct formatter <chrono::year_month_weekday, _CharT> : public __formatter_chrono<_CharT> {
958
958
public:
959
959
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
960
960
@@ -965,7 +965,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_weekday, _CharT> : publ
965
965
};
966
966
967
967
template <__fmt_char_type _CharT>
968
- struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_weekday_last, _CharT> : public __formatter_chrono<_CharT> {
968
+ struct formatter <chrono::year_month_weekday_last, _CharT> : public __formatter_chrono<_CharT> {
969
969
public:
970
970
using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
971
971
0 commit comments