Fix previous backport.

This commit is contained in:
Gael Guennebaud 2016-08-29 10:31:10 +02:00
parent ef7230c229
commit 9661180a4d

View File

@ -58,7 +58,7 @@ template<> struct conj_if<false> {
template<typename LhsScalar, typename RhsScalar, bool ConjLhs, bool ConjRhs>
struct conj_helper
{
typedef typename ScalarBinaryOpTraits<LhsScalar,RhsScalar>::ReturnType Scalar;
typedef typename scalar_product_traits<LhsScalar,RhsScalar>::ReturnType Scalar;
EIGEN_STRONG_INLINE Scalar pmadd(const LhsScalar& x, const RhsScalar& y, const Scalar& c) const
{ return padd(c, pmul(x,y)); }