aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Eigen2Support/CwiseOperators.h
diff options
context:
space:
mode:
Diffstat (limited to 'Eigen/src/Eigen2Support/CwiseOperators.h')
-rw-r--r--Eigen/src/Eigen2Support/CwiseOperators.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/src/Eigen2Support/CwiseOperators.h b/Eigen/src/Eigen2Support/CwiseOperators.h
index fc5fe86c6..ac1dc0a7e 100644
--- a/Eigen/src/Eigen2Support/CwiseOperators.h
+++ b/Eigen/src/Eigen2Support/CwiseOperators.h
@@ -95,10 +95,10 @@ Cwise<ExpressionType>::log() const
*/
template<typename ExpressionType>
template<typename OtherDerived>
-EIGEN_STRONG_INLINE const EIGEN_CWISE_PRODUCT_RETURN_TYPE
+EIGEN_STRONG_INLINE const EIGEN_CWISE_PRODUCT_RETURN_TYPE(ExpressionType,OtherDerived)
Cwise<ExpressionType>::operator*(const MatrixBase<OtherDerived> &other) const
{
- return EIGEN_CWISE_PRODUCT_RETURN_TYPE(_expression(), other.derived());
+ return EIGEN_CWISE_PRODUCT_RETURN_TYPE(ExpressionType,OtherDerived)(_expression(), other.derived());
}
/** \returns an expression of the coefficient-wise quotient of *this and \a other