Borland C++: Fixed compiler error

This commit is contained in:
Daniel Marjamäki 2010-01-09 10:24:35 +01:00
parent 2dd0907146
commit 6ec5b797ab
1 changed files with 1 additions and 1 deletions

View File

@ -4452,7 +4452,7 @@ void Tokenizer::simplifyEnum()
else if (Token::Match(tok1, "%type% = %num% ,|}"))
{
enumName = tok1;
last_value = atoi(tok1->strAt(2));
last_value = std::atoi(tok1->strAt(2));
enumValue = tok1->tokAt(2);
}