Skip to content

Commit

Permalink
LWG-3833 Remove specialization `template<size_t N> struct formatter<c…
Browse files Browse the repository at this point in the history
…onst charT[N], charT>` (#3477)
  • Loading branch information
mlemacio authored Feb 23, 2023
1 parent 9fb8168 commit be1ac63
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions stl/inc/format
Original file line number Diff line number Diff line change
Expand Up @@ -3364,10 +3364,6 @@ struct formatter<const _CharT*, _CharT>
template <_Format_supported_charT _CharT, size_t _Nx>
struct formatter<_CharT[_Nx], _CharT> : _Formatter_base<_CharT[_Nx], _CharT, _Basic_format_arg_type::_CString_type> {};

template <_Format_supported_charT _CharT, size_t _Nx>
struct formatter<const _CharT[_Nx], _CharT>
: _Formatter_base<_CharT[_Nx], _CharT, _Basic_format_arg_type::_CString_type> {};

template <_Format_supported_charT _CharT, class _Traits, class _Allocator>
struct formatter<basic_string<_CharT, _Traits, _Allocator>, _CharT>
: _Formatter_base<basic_string<_CharT, _Traits, _Allocator>, _CharT, _Basic_format_arg_type::_String_type> {};
Expand Down

0 comments on commit be1ac63

Please sign in to comment.