Affected subclause: [format.formatter.spec]
Change: Removed the formatter specialization:
template<size_t N> struct formatter<const charT[N], charT>;
Rationale: The specialization is inconsistent with the design of
formatter,
which is intended to be instantiated only with cv-unqualified object types
. Effect on original feature: Valid C++ 2020 code that instantiated the removed specialization
can become ill-formed
.