astyle formatting

This commit is contained in:
Daniel Marjamäki 2010-04-18 20:59:48 +02:00
parent b6ab419a06
commit ecf556da7e
1 changed files with 12 additions and 12 deletions

View File

@ -1267,22 +1267,22 @@ void CheckBufferOverrun::checkSprintfCall(const Token *tok, int size)
void CheckBufferOverrun::negativeIndexError(const Token *tok, long index)
{
std::ostringstream ostr;
ostr << "Array index " << index << " corresponds with " << (unsigned long)index << ", which is likely out of bounds";
reportError(tok, Severity::error, "negativeIndex", ostr.str());
std::ostringstream ostr;
ostr << "Array index " << index << " corresponds with " << (unsigned long)index << ", which is likely out of bounds";
reportError(tok, Severity::error, "negativeIndex", ostr.str());
}
void CheckBufferOverrun::negativeIndex()
{
const char pattern[] = "[ %num% ]";
for (const Token *tok = Token::findmatch(_tokenizer->tokens(), pattern); tok; tok = Token::findmatch(tok->next(),pattern))
{
const long index = MathLib::toLongNumber(tok->next()->str());
if (index < 0)
{
negativeIndexError(tok, index);
}
}
const char pattern[] = "[ %num% ]";
for (const Token *tok = Token::findmatch(_tokenizer->tokens(), pattern); tok; tok = Token::findmatch(tok->next(),pattern))
{
const long index = MathLib::toLongNumber(tok->next()->str());
if (index < 0)
{
negativeIndexError(tok, index);
}
}
}