diff options
| author | 2023-10-01 16:21:23 -0400 | |
|---|---|---|
| committer | 2023-10-01 19:22:08 -0400 | |
| commit | 38394f36d78f22ca75acf8275e86d25faecd0e8d (patch) | |
| tree | 6c2710b6201abeae3cae96d8e1fa1eccbe92f8ab /src/common/string_util.cpp | |
| parent | Merge pull request #11646 from FernandoS27/stop-ignoring-your-mental-health (diff) | |
| download | yuzu-38394f36d78f22ca75acf8275e86d25faecd0e8d.tar.gz yuzu-38394f36d78f22ca75acf8275e86d25faecd0e8d.tar.xz yuzu-38394f36d78f22ca75acf8275e86d25faecd0e8d.zip | |
gdbserver: use numeric character references for unicode
Diffstat (limited to 'src/common/string_util.cpp')
| -rw-r--r-- | src/common/string_util.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/string_util.cpp b/src/common/string_util.cpp index feab1653d..4c7aba3f5 100644 --- a/src/common/string_util.cpp +++ b/src/common/string_util.cpp | |||
| @@ -135,6 +135,11 @@ std::u16string UTF8ToUTF16(std::string_view input) { | |||
| 135 | return convert.from_bytes(input.data(), input.data() + input.size()); | 135 | return convert.from_bytes(input.data(), input.data() + input.size()); |
| 136 | } | 136 | } |
| 137 | 137 | ||
| 138 | std::u32string UTF8ToUTF32(std::string_view input) { | ||
| 139 | std::wstring_convert<std::codecvt_utf8<char32_t>, char32_t> convert; | ||
| 140 | return convert.from_bytes(input.data(), input.data() + input.size()); | ||
| 141 | } | ||
| 142 | |||
| 138 | #ifdef _WIN32 | 143 | #ifdef _WIN32 |
| 139 | static std::wstring CPToUTF16(u32 code_page, std::string_view input) { | 144 | static std::wstring CPToUTF16(u32 code_page, std::string_view input) { |
| 140 | const auto size = | 145 | const auto size = |