summaryrefslogtreecommitdiffstats
path: root/src/math/func.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/func.h')
-rw-r--r--src/math/func.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/func.h b/src/math/func.h
index 30ba2ae..d9a3c59 100644
--- a/src/math/func.h
+++ b/src/math/func.h
@@ -89,7 +89,7 @@ inline float Norm(float a)
//! Returns the absolute value
inline float Abs(float a)
{
- return (float)fabs(a);
+ return (float)std::fabs(a);
}
//! Swaps two integers