With what can I replace codecvt_utf8_utf16?

Since codecvt_utf8_utf16 and codecvt_utf16 are deprecated in C++17, what can we do to obtain the same functionality?

Thanks!!

Last edited on
utf8-cpp
std::codecvt_utf8_utf16 and std::codecvt_utf16 (and std::codecvt_utf8 etc) do not have a replacement in standard C++. They are still part of C++17 and will be part of C++20 and likely one or more future standards, until a standard replacement appears.
Last edited on
Topic archived. No new replies allowed.