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
1 changed files with 4 additions and 0 deletions

View File

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