From 32e7dae776b89092b27457fc8c266ad60c8a154e Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 23 Feb 2011 09:41:02 +0100 Subject: [PATCH] Altivec: fix infinite loop (ei_ -> internal:: change) --- Eigen/src/Core/arch/AltiVec/Complex.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Eigen/src/Core/arch/AltiVec/Complex.h b/Eigen/src/Core/arch/AltiVec/Complex.h index 3dca140cd..9ba34ee61 100644 --- a/Eigen/src/Core/arch/AltiVec/Complex.h +++ b/Eigen/src/Core/arch/AltiVec/Complex.h @@ -181,7 +181,7 @@ template<> struct conj_helper EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const { - return pmul(a, pconj(b)); + return internal::pmul(a, pconj(b)); } }; @@ -192,7 +192,7 @@ template<> struct conj_helper EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const { - return pmul(pconj(a), b); + return internal::pmul(pconj(a), b); } }; @@ -203,7 +203,7 @@ template<> struct conj_helper EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const { - return pconj(pmul(a, b)); + return pconj(internal::pmul(a, b)); } };