diff --git a/Eigen/src/Core/Functors.h b/Eigen/src/Core/Functors.h index 2a6c3c003..e54a49808 100644 --- a/Eigen/src/Core/Functors.h +++ b/Eigen/src/Core/Functors.h @@ -154,6 +154,7 @@ template struct scalar_hypot_op { { using std::max; using std::min; + using std::sqrt; Scalar p = (max)(_x, _y); Scalar q = (min)(_x, _y); Scalar qp = q/p;