]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commit
common: use native MultiByteToWideChar (#17738)
authorAdrien Gallouët <redacted>
Thu, 4 Dec 2025 10:06:49 +0000 (11:06 +0100)
committerGitHub <redacted>
Thu, 4 Dec 2025 10:06:49 +0000 (12:06 +0200)
commit83c1171529a30c5e018779339690e21430aae372
treed8fed6db07fba57c66d59a4df78b2ecdb2a57024
parent0d1324856f9a05ae43b5b9cb786019758e53f647
common: use native MultiByteToWideChar (#17738)

`std::codecvt_utf8<wchar_t>` is deprecated and produces warnings:

    common/common.cpp:792:31: warning: 'codecvt_utf8<wchar_t>' is deprecated [-Wdeprecated-declarations]
      792 |     std::wstring_convert<std::codecvt_utf8<wchar_t>> converter;
          |

Signed-off-by: Adrien Gallouët <redacted>
common/common.cpp