diff options
Diffstat (limited to 'libcxx/include/__format/formatter_integer.h')
| -rw-r--r-- | libcxx/include/__format/formatter_integer.h | 28 | 
1 files changed, 14 insertions, 14 deletions
| diff --git a/libcxx/include/__format/formatter_integer.h b/libcxx/include/__format/formatter_integer.h index 3139c9efdf80..b4be9f9a07ce 100644 --- a/libcxx/include/__format/formatter_integer.h +++ b/libcxx/include/__format/formatter_integer.h @@ -13,7 +13,7 @@  #include <__availability>  #include <__concepts/arithmetic.h>  #include <__config> -#include <__format/format_fwd.h> +#include <__format/concepts.h>  #include <__format/format_parse_context.h>  #include <__format/formatter.h>  #include <__format/formatter_integral.h> @@ -30,7 +30,7 @@  #if _LIBCPP_STD_VER > 17 -    template <__formatter::__char_type _CharT> +    template <__fmt_char_type _CharT>      struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT __formatter_integer {  public: @@ -59,43 +59,43 @@ public:  };  // Signed integral types. -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<signed char, _CharT>      : public __formatter_integer<_CharT> {}; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<short, _CharT> : public __formatter_integer<_CharT> {  }; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<int, _CharT> : public __formatter_integer<_CharT> {}; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<long, _CharT> : public __formatter_integer<_CharT> {}; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<long long, _CharT>      : public __formatter_integer<_CharT> {};  #  ifndef _LIBCPP_HAS_NO_INT128 -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<__int128_t, _CharT>      : public __formatter_integer<_CharT> {};  #  endif  // Unsigned integral types. -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<unsigned char, _CharT>      : public __formatter_integer<_CharT> {}; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<unsigned short, _CharT>      : public __formatter_integer<_CharT> {}; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<unsigned, _CharT>      : public __formatter_integer<_CharT> {}; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<unsigned long, _CharT>      : public __formatter_integer<_CharT> {}; -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<unsigned long long, _CharT>      : public __formatter_integer<_CharT> {};  #  ifndef _LIBCPP_HAS_NO_INT128 -template <__formatter::__char_type _CharT> +template <__fmt_char_type _CharT>  struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<__uint128_t, _CharT>      : public __formatter_integer<_CharT> {};  #  endif | 
