aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2013-01-27 13:46:06 +0100
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2013-01-27 13:46:06 +0100
commit57e50789f30544daba1b8e554025af1c5352eee1 (patch)
treec038c398d96fc5a504608786e62276a6bb598c53 /Eigen
parent718535ac6c50ef3b3dc04fa5d040aafe58c65289 (diff)
Added missing using std::sqrt.
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/src/Core/MathFunctions.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/src/Core/MathFunctions.h b/Eigen/src/Core/MathFunctions.h
index 4ce616746..fab2d9a72 100644
--- a/Eigen/src/Core/MathFunctions.h
+++ b/Eigen/src/Core/MathFunctions.h
@@ -338,6 +338,7 @@ struct hypot_impl
using std::max;
using std::min;
using std::abs;
+ using std::sqrt;
RealScalar _x = abs(x);
RealScalar _y = abs(y);
RealScalar p = (max)(_x, _y);