astyle formatting

This commit is contained in:
Daniel Marjamäki 2010-04-02 07:32:03 +02:00
parent 0cad22314e
commit 8b5aae9adb
6 changed files with 61 additions and 61 deletions

View File

@ -2622,7 +2622,7 @@ void CheckOther::zerodivError(const Token *tok)
void CheckOther::mathfunctionCallError(const Token *tok)
{
reportError(tok, Severity::error, "wrongmathcall","Passing value " + tok->tokAt(2)->str() + " to " + tok->str() + "() leads to undefined result");
reportError(tok, Severity::error, "wrongmathcall", "Passing value " + tok->tokAt(2)->str() + " to " + tok->str() + "() leads to undefined result");
}
void CheckOther::postIncrementError(const Token *tok, const std::string &var_name, const bool isIncrement)