From c47010e3d221396cde2aad6b3250fa698a930e28 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 19 Aug 2013 16:10:00 +0200 Subject: [PATCH] typo --- Eigen/src/Core/arch/SSE/MathFunctions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/Core/arch/SSE/MathFunctions.h b/Eigen/src/Core/arch/SSE/MathFunctions.h index 7a0aee658..99cbd0d95 100644 --- a/Eigen/src/Core/arch/SSE/MathFunctions.h +++ b/Eigen/src/Core/arch/SSE/MathFunctions.h @@ -466,7 +466,7 @@ template<> EIGEN_STRONG_INLINE Packet4f psqrt(const Packet4f& x) { ret #endif -template<> EIGEN_STRONG_INLINE Packet4f psqrt(const Packet2d& x) { return _mm_sqrt_pd(x); } +template<> EIGEN_STRONG_INLINE Packet2d psqrt(const Packet2d& x) { return _mm_sqrt_pd(x); } } // end namespace internal