mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 11:28:59 +08:00
Change size_t to int (which is the actual return type)
This commit is contained in:
parent
ca692e52ce
commit
f72cf87ab2
@ -73,7 +73,7 @@ namespace vcpkg::Strings
|
|||||||
{
|
{
|
||||||
std::wstring to_utf16(const CStringView s)
|
std::wstring to_utf16(const CStringView s)
|
||||||
{
|
{
|
||||||
const size_t size = MultiByteToWideChar(CP_UTF8, 0, s.c_str(), -1, nullptr, 0);
|
const int size = MultiByteToWideChar(CP_UTF8, 0, s.c_str(), -1, nullptr, 0);
|
||||||
std::wstring output;
|
std::wstring output;
|
||||||
output.resize(size - 1);
|
output.resize(size - 1);
|
||||||
MultiByteToWideChar(CP_UTF8, 0, s.c_str(), -1, output.data(), size - 1);
|
MultiByteToWideChar(CP_UTF8, 0, s.c_str(), -1, output.data(), size - 1);
|
||||||
@ -82,7 +82,7 @@ namespace vcpkg::Strings
|
|||||||
|
|
||||||
std::string to_utf8(const CWStringView w)
|
std::string to_utf8(const CWStringView w)
|
||||||
{
|
{
|
||||||
const size_t size = WideCharToMultiByte(CP_UTF8, 0, w.c_str(), -1, nullptr, 0, nullptr, nullptr);
|
const int size = WideCharToMultiByte(CP_UTF8, 0, w.c_str(), -1, nullptr, 0, nullptr, nullptr);
|
||||||
std::string output;
|
std::string output;
|
||||||
output.resize(size - 1);
|
output.resize(size - 1);
|
||||||
WideCharToMultiByte(CP_UTF8, 0, w.c_str(), -1, output.data(), size - 1, nullptr, nullptr);
|
WideCharToMultiByte(CP_UTF8, 0, w.c_str(), -1, output.data(), size - 1, nullptr, nullptr);
|
||||||
|
Loading…
Reference in New Issue
Block a user