aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/arch/NEON/Complex.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2011-02-23 09:41:55 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2011-02-23 09:41:55 +0100
commit7dc18b20bbdfeabf73ed0ce2de074c04bba85567 (patch)
treeb2c0f7706a644102a9f4d7288a11a50fd54e0d80 /Eigen/src/Core/arch/NEON/Complex.h
parent32e7dae776b89092b27457fc8c266ad60c8a154e (diff)
same for neon
Diffstat (limited to 'Eigen/src/Core/arch/NEON/Complex.h')
-rw-r--r--Eigen/src/Core/arch/NEON/Complex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Eigen/src/Core/arch/NEON/Complex.h b/Eigen/src/Core/arch/NEON/Complex.h
index 7d9e1fc7f..a6c9e5c11 100644
--- a/Eigen/src/Core/arch/NEON/Complex.h
+++ b/Eigen/src/Core/arch/NEON/Complex.h
@@ -220,7 +220,7 @@ template<> struct conj_helper<Packet2cf, Packet2cf, false,true>
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
{
- return pmul(a, pconj(b));
+ return internal::pmul(a, pconj(b));
}
};
@@ -231,7 +231,7 @@ template<> struct conj_helper<Packet2cf, Packet2cf, true,false>
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
{
- return pmul(pconj(a), b);
+ return internal::pmul(pconj(a), b);
}
};
@@ -242,7 +242,7 @@ template<> struct conj_helper<Packet2cf, Packet2cf, true,true>
EIGEN_STRONG_INLINE Packet2cf pmul(const Packet2cf& a, const Packet2cf& b) const
{
- return pconj(pmul(a, b));
+ return pconj(internal::pmul(a, b));
}
};