aboutsummaryrefslogtreecommitdiff
path: root/Source/Maths.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Maths.cpp')
-rw-r--r--Source/Maths.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Maths.cpp b/Source/Maths.cpp
index 3505ce6..5932dee 100644
--- a/Source/Maths.cpp
+++ b/Source/Maths.cpp
@@ -19,6 +19,6 @@ double fast_sqrt (register double arg)
return result * arg;
#else
- return std::sqrt(arg);
+ return sqrt(arg);
#endif
}