Fixed type conversion warnings

This commit is contained in:
Ryan McCampbell
2019-09-03 21:06:48 -04:00
parent a8822a2b29
commit a16906686f

View File

@@ -64,18 +64,18 @@ using namespace Assimp;
#ifdef _WIN32
static std::wstring Utf8ToWide(const char* in)
{
size_t size = MultiByteToWideChar(CP_UTF8, 0, in, -1, nullptr, 0);
int size = MultiByteToWideChar(CP_UTF8, 0, in, -1, nullptr, 0);
// size includes terminating null; std::wstring adds null automatically
std::wstring out(size - 1, L'\0');
std::wstring out(static_cast<size_t>(size) - 1, L'\0');
MultiByteToWideChar(CP_UTF8, 0, in, -1, &out[0], size);
return out;
}
static std::string WideToUtf8(const wchar_t* in)
{
size_t size = WideCharToMultiByte(CP_UTF8, 0, in, -1, nullptr, 0, nullptr, nullptr);
int size = WideCharToMultiByte(CP_UTF8, 0, in, -1, nullptr, 0, nullptr, nullptr);
// size includes terminating null; std::string adds null automatically
std::string out(size - 1, '\0');
std::string out(static_cast<size_t>(size) - 1, '\0');
WideCharToMultiByte(CP_UTF8, 0, in, -1, &out[0], size, nullptr, nullptr);
return out;
}