Consider converting from
wchar_t to char32_t, everywhere.
This doesn't work. A lot of libraries I depend on need wchar_t and don't have (or I haven't found) char32_t equivalents. The same character in different encodings is not equal, and there I…
Consider converting from
wchar_t to char32_t, everywhere.
Consider converting from
wchar_t to char32_t, everywhere.
Yeah, this one's a bust. You can't reliably cast between wchar_t and char32_t, and a given character in the one is not equal to the same character in the other. Going to have to roll this…