@@ -698,7 +698,7 @@ __format_chrono(const _Tp& __value,
698698} // namespace __formatter
699699
700700template <__fmt_char_type _CharT>
701- struct _LIBCPP_TEMPLATE_VIS __formatter_chrono {
701+ struct __formatter_chrono {
702702public:
703703 template <class _ParseContext >
704704 _LIBCPP_HIDE_FROM_ABI constexpr typename _ParseContext::iterator
@@ -716,7 +716,7 @@ struct _LIBCPP_TEMPLATE_VIS __formatter_chrono {
716716};
717717
718718template <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> {
720720public:
721721 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
722722
@@ -730,7 +730,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::sys_time<_Duration>, _CharT> : pub
730730# if _LIBCPP_HAS_EXPERIMENTAL_TZDB
731731
732732template <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> {
734734public:
735735 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
736736
@@ -741,7 +741,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::utc_time<_Duration>, _CharT> : pub
741741};
742742
743743template <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> {
745745public:
746746 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
747747
@@ -752,7 +752,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::tai_time<_Duration>, _CharT> : pub
752752};
753753
754754template <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> {
756756public:
757757 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
758758
@@ -766,7 +766,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::gps_time<_Duration>, _CharT> : pub
766766# endif // _LIBCPP_HAS_TIME_ZONE_DATABASE && _LIBCPP_HAS_FILESYSTEM
767767
768768template <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> {
770770public:
771771 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
772772
@@ -777,7 +777,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::file_time<_Duration>, _CharT> : pu
777777};
778778
779779template <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> {
781781public:
782782 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
783783
@@ -811,7 +811,7 @@ struct formatter<chrono::duration<_Rep, _Period>, _CharT> : public __formatter_c
811811};
812812
813813template <__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> {
815815public:
816816 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
817817
@@ -822,7 +822,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::day, _CharT> : public __formatter_
822822};
823823
824824template <__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> {
826826public:
827827 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
828828
@@ -833,7 +833,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month, _CharT> : public __formatte
833833};
834834
835835template <__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> {
837837public:
838838 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
839839
@@ -844,7 +844,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year, _CharT> : public __formatter
844844};
845845
846846template <__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> {
848848public:
849849 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
850850
@@ -855,7 +855,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday, _CharT> : public __format
855855};
856856
857857template <__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> {
859859public:
860860 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
861861
@@ -866,7 +866,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday_indexed, _CharT> : public
866866};
867867
868868template <__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> {
870870public:
871871 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
872872
@@ -877,7 +877,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::weekday_last, _CharT> : public __f
877877};
878878
879879template <__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> {
881881public:
882882 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
883883
@@ -888,7 +888,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_day, _CharT> : public __form
888888};
889889
890890template <__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> {
892892public:
893893 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
894894
@@ -899,7 +899,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_day_last, _CharT> : public _
899899};
900900
901901template <__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> {
903903public:
904904 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
905905
@@ -910,7 +910,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_weekday, _CharT> : public __
910910};
911911
912912template <__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> {
914914public:
915915 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
916916
@@ -921,7 +921,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::month_weekday_last, _CharT> : publ
921921};
922922
923923template <__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> {
925925public:
926926 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
927927
@@ -932,7 +932,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month, _CharT> : public __for
932932};
933933
934934template <__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> {
936936public:
937937 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
938938
@@ -943,7 +943,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_day, _CharT> : public _
943943};
944944
945945template <__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> {
947947public:
948948 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
949949
@@ -954,7 +954,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_day_last, _CharT> : pub
954954};
955955
956956template <__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> {
958958public:
959959 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
960960
@@ -965,7 +965,7 @@ struct _LIBCPP_TEMPLATE_VIS formatter<chrono::year_month_weekday, _CharT> : publ
965965};
966966
967967template <__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> {
969969public:
970970 using _Base _LIBCPP_NODEBUG = __formatter_chrono<_CharT>;
971971
0 commit comments