VS: fixed compiler warning. Ticket: #2200

This commit is contained in:
Daniel Marjamäki 2010-11-20 11:28:47 +01:00
parent e8ca76e02e
commit d021cd9074
1 changed files with 1 additions and 1 deletions

View File

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