Warning fix

This commit is contained in:
Alex Zolotarev 2013-11-26 14:03:11 +03:00 committed by Alex Zolotarev
parent 0de2a8c5f1
commit b3fbbc7eab

View file

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