Closed mgautierfr closed 1 year ago
Attention: 13 lines
in your changes are missing coverage. Please review.
Comparison is base (
e08484d
) 27.58% compared to head (c073fb9
) 27.49%.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
std::codecvt_utf8_utf16
is deprecated in c++17. We replace it with the usage of windows'MultiByteToWideChar
function.The new
converter
method is taken from libzim'sFS::toWideChar
insrc/fs_windows.cpp
with the only difference to returnstd::wstring
instead ofstd::unique_ptr<wchar_t[]>
. (https://github.com/openzim/libzim/blob/main/src/fs_windows.cpp#L131-L144)(Triggered by https://github.com/kiwix/kiwix-build/actions/runs/6575114946/job/17861540481?pr=638)