From e535450573bf8a15d63cc0dff6090a89f28cf8cb Mon Sep 17 00:00:00 2001 From: Benoit Steiner Date: Tue, 8 Dec 2015 14:06:39 -0800 Subject: [PATCH] Cleanup --- Eigen/src/Core/GenericPacketMath.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Eigen/src/Core/GenericPacketMath.h b/Eigen/src/Core/GenericPacketMath.h index 6872f5e53..8ad51bad5 100644 --- a/Eigen/src/Core/GenericPacketMath.h +++ b/Eigen/src/Core/GenericPacketMath.h @@ -437,15 +437,15 @@ Packet pceil(const Packet& a) { using numext::ceil; return ceil(a); } /** \internal \returns the ln(|gamma(\a a)|) (coeff-wise) */ template EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS -Packet plgamma(const Packet& a) { return numext::lgamma(a); } +Packet plgamma(const Packet& a) { using numext::lgamma; return lgamma(a); } /** \internal \returns the erf(\a a) (coeff-wise) */ template EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS -Packet perf(const Packet& a) { return numext::erf(a); } +Packet perf(const Packet& a) { using numext::erf; return erf(a); } /** \internal \returns the erfc(\a a) (coeff-wise) */ template EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS -Packet perfc(const Packet& a) { return numext::erfc(a); } +Packet perfc(const Packet& a) { using numext::erfc; return erfc(a); } /*************************************************************************** * The following functions might not have to be overwritten for vectorized types