Re: [PATCH] libstdc++: Poor man's case insensitive comparisons in time_get [PR71557]

2021-12-14 Thread Jonathan Wakely via Gcc-patches
On Tue, 14 Dec 2021 at 13:50, Jakub Jelinek via Libstdc++ < libstd...@gcc.gnu.org> wrote: > Hi! > > This patch uses the same not completely correct case insensitive > comparisons > as used elsewhere in the same header. Proper comparisons that would handle > even multi-byte characters would be har

[PATCH] libstdc++: Poor man's case insensitive comparisons in time_get [PR71557]

2021-12-14 Thread Jakub Jelinek via Gcc-patches
Hi! This patch uses the same not completely correct case insensitive comparisons as used elsewhere in the same header. Proper comparisons that would handle even multi-byte characters would be harder, but I don't see them implemented in __ctype's methods. Tested on x86_64-linux, ok for trunk? 20