forked from organicmaps/organicmaps
Warning fix
This commit is contained in:
parent
0de2a8c5f1
commit
b3fbbc7eab
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ string ToUtf8(UniString const & s)
|
|||
bool IsASCIIString(string const & str)
|
||||
{
|
||||
for (size_t i = 0; i < str.size(); ++i)
|
||||
if (str[i] < 0 || str[i] > 127)
|
||||
if (str[i] & 0x80)
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue