From 5f9e14e2426c567a1e23180c411914e6b595ff31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 3 Apr 2010 07:51:40 +0200 Subject: [PATCH] Borland C++: Fixed compiler error --- lib/checkother.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 966334130..582e565b6 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -2476,7 +2476,7 @@ void CheckOther::checkMathFunctions() } // 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) + std::fabs(MathLib::toDoubleNumber(tok->tokAt(2)->str())) > 1.0) { mathfunctionCallError(tok); }