summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++
diff options
context:
space:
mode:
Diffstat (limited to 'dev/LibC++')
-rw-r--r--dev/LibC++/base_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/LibC++/base_math.h b/dev/LibC++/base_math.h
index ca6aace..94c34e8 100644
--- a/dev/LibC++/base_math.h
+++ b/dev/LibC++/base_math.h
@@ -37,7 +37,7 @@ inline real_type pow(real_type in) {
/// @brief Square of function, with Base template argument.
/// @param of Base argument to find sqquare of
template <size_t Base>
-inline real_type sqr(real_type in) {
+inline real_type surd(real_type in) {
if (in == 0) return 0;
return pow<1 / Base>(in);