C++20 made the u8 string type distinct from char, so all code was changed to use std::string instead. However this caused UTF8 strings to break, so now a proper solution is needed that properly displays UTF8 without causing conversion errors in code.
C++20 made the
u8
string type distinct fromchar
, so all code was changed to usestd::string
instead. However this caused UTF8 strings to break, so now a proper solution is needed that properly displays UTF8 without causing conversion errors in code.