astyle fix

This commit is contained in:
Reijo Tomperi 2010-04-02 21:42:06 +03:00
parent 5a21fe7ae8
commit a1d0defbc0
5 changed files with 17 additions and 17 deletions

View File

@ -2475,7 +2475,7 @@ void CheckOther::checkMathFunctions()
mathfunctionCallError(tok);
}
// acos( x ) x is defined for intervall [-1,+1], but not beyound
else if(Token::Match(tok, "acos ( %num% )") &&
else if (Token::Match(tok, "acos ( %num% )") &&
fabs(MathLib::toDoubleNumber(tok->tokAt(2)->str())) > 1.0)
{
mathfunctionCallError(tok);