mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
Fix warnings
This commit is contained in:
@@ -24,7 +24,7 @@ namespace utils::string
|
||||
|
||||
inline wchar_t char_to_lower(const wchar_t val)
|
||||
{
|
||||
return std::towlower(val);
|
||||
return static_cast<wchar_t>(std::towlower(val));
|
||||
}
|
||||
|
||||
template <class Elem, class Traits, class Alloc>
|
||||
|
||||
Reference in New Issue
Block a user