Missing line during manual rebase of PR-374

This commit is contained in:
Christoph Hertzberg 2018-06-07 20:30:09 +02:00
parent b2053990d0
commit 7d7bb91537

View File

@ -357,7 +357,7 @@ struct generic_product_impl_base
{ scaleAndAddTo(dst, lhs, rhs, Scalar(-1)); }
template<typename Dst>
static EIGEN_STRONG_INLINE void scaleAndAddTo(Dst& dst, const Lhs& lhs, const Rhs& rhs, const Scalar& alpha)
static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void scaleAndAddTo(Dst& dst, const Lhs& lhs, const Rhs& rhs, const Scalar& alpha)
{ Derived::scaleAndAddTo(dst,lhs,rhs,alpha); }
};