Codechange: Use std::strto* variants everywhere (#10720)
This commit is contained in:
@@ -146,7 +146,7 @@ bool GetArgumentInteger(uint32 *value, const char *arg)
|
||||
return true;
|
||||
}
|
||||
|
||||
*value = strtoul(arg, &endptr, 0);
|
||||
*value = std::strtoul(arg, &endptr, 0);
|
||||
return arg != endptr;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user