VS: fixed compiler warning. Ticket: #2200
This commit is contained in:
parent
e8ca76e02e
commit
d021cd9074
|
@ -304,7 +304,7 @@ void CheckOther::invalidFunctionUsage()
|
||||||
{
|
{
|
||||||
if (Token::Match(tok2, ", %num% )"))
|
if (Token::Match(tok2, ", %num% )"))
|
||||||
{
|
{
|
||||||
int radix = MathLib::toLongNumber(tok2->next()->str());
|
const MathLib::bigint radix = MathLib::toLongNumber(tok2->next()->str());
|
||||||
if (!(radix == 0 || (radix >= 2 && radix <= 36)))
|
if (!(radix == 0 || (radix >= 2 && radix <= 36)))
|
||||||
{
|
{
|
||||||
dangerousUsageStrtolError(tok2);
|
dangerousUsageStrtolError(tok2);
|
||||||
|
|
Loading…
Reference in New Issue