Skip to content

Commit

Permalink
Implement LWG-3833
Browse files Browse the repository at this point in the history
Remove template specialization
  • Loading branch information
mlemacio committed Feb 17, 2023
1 parent 79e8041 commit 384086c
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 384086c

Please sign in to comment.