diff --git a/es-core/src/utils/StringUtil.cpp b/es-core/src/utils/StringUtil.cpp index e6a053183..0a1ed8dba 100644 --- a/es-core/src/utils/StringUtil.cpp +++ b/es-core/src/utils/StringUtil.cpp @@ -551,7 +551,7 @@ namespace Utils std::string line {stringArg}; bool active {true}; - for (auto& chr : line) { + for (unsigned char chr : line) { if (std::isalnum(chr)) { if (active) { chr = std::toupper(chr);