Expand Android platform build coverage

This commit is contained in:
2026-06-05 00:14:04 +02:00
parent 841fbac8eb
commit 2feeffd6c8
8 changed files with 88 additions and 29 deletions

View File

@@ -19,7 +19,8 @@ namespace {
return false;
}
for (const unsigned char ch : value) {
for (const char raw : value) {
const auto ch = static_cast<unsigned char>(raw);
if (std::isalnum(ch) == 0 && ch != '_') {
return false;
}