astyle fix
This commit is contained in:
parent
f36af278d0
commit
93d4851040
|
@ -2474,9 +2474,9 @@ void CheckOther::checkMathFunctions()
|
|||
{
|
||||
mathfunctionCallError(tok);
|
||||
}
|
||||
// acos( x ), asin( x ) where x is defined for intervall [-1,+1], but not beyound
|
||||
else if(Token::Match(tok, "acos|asin ( %num% )") &&
|
||||
fabs(MathLib::toDoubleNumber(tok->tokAt(2)->str())) > 1.0)
|
||||
// acos( x ), asin( x ) where x is defined for intervall [-1,+1], but not beyound
|
||||
else if (Token::Match(tok, "acos|asin ( %num% )") &&
|
||||
fabs(MathLib::toDoubleNumber(tok->tokAt(2)->str())) > 1.0)
|
||||
{
|
||||
mathfunctionCallError(tok);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue