parent
3f114a557a
commit
105dcebb9e
@ -45,11 +45,7 @@ static bool isAllDigits(const generic_string &str)
|
|||||||
{
|
{
|
||||||
for (const auto& i : str)
|
for (const auto& i : str)
|
||||||
{
|
{
|
||||||
if (i < -i || i > 255)
|
if (i < 48 || i > 57)
|
||||||
return false;
|
|
||||||
|
|
||||||
bool isDigit = ::isdigit(int(i)) != 0;
|
|
||||||
if (!isDigit)
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user