Fix warnings

This commit is contained in:
momo5502
2025-03-18 19:50:13 +01:00
parent 2a9a8eda35
commit ef8a9dae6e
14 changed files with 58 additions and 18 deletions

View File

@@ -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>