string: remove deprecated wstring to_uft8 convertors

The `codecvt` routines are deprecated, and this code is entirely
untested.
This commit is contained in:
Danny Robson 2024-02-21 14:56:05 +10:00
parent 1672020ebb
commit eef192ab3c

View File

@ -9,6 +9,9 @@
#include "string.hpp" #include "string.hpp"
#include <cstring> #include <cstring>
#if 0
#include <codecvt> #include <codecvt>
#include <locale> #include <locale>
@ -34,6 +37,7 @@ cruft::to_utf8 (const std::wstring &src)
{ {
return to_utf8 (src.c_str ()); return to_utf8 (src.c_str ());
} }
#endif
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////