Merge pull request #73 from diamante0018/patch-1

[String] Port changes from S1x
This commit is contained in:
Maurice Heumann 2022-04-10 10:09:59 +02:00 committed by GitHub
commit b9f02f9a04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,9 @@ namespace utils::string
std::string to_lower(std::string text)
{
std::transform(text.begin(), text.end(), text.begin(), [](const char input)
std::transform(text.begin(), text.end(), text.begin(), [](const unsigned char input)
{
return CHAR(tolower(input));
return static_cast<char>(std::tolower(input));
});
return text;
@ -28,9 +28,9 @@ namespace utils::string
std::string to_upper(std::string text)
{
std::transform(text.begin(), text.end(), text.begin(), [](const char input)
std::transform(text.begin(), text.end(), text.begin(), [](const unsigned char input)
{
return CHAR(toupper(input));
return static_cast<char>(std::toupper(input));
});
return text;