I noticed on cppreference.com that this and related things in the <codecvt>
header are deprecated in C++17.
So what's the alternative that is supported?
I'm trying to convert an int
into a std::u32srting
in order to properly support unicode. I was going to convert with std::to_string
or std::to_wstring
before using std::wstring_convert
but noticed it's deprecated. I would much rather use the correct most recent standard.