aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2010-06-24 19:21:25 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2010-06-24 19:21:25 +0200
commite039edcb422e3b5c6c0c06e1a5ba69a22695ebe8 (patch)
treea46fc4e2ce49b336f98745b866c15afde3aea95d /Eigen/src/Core/Product.h
parentb22fc6cdc316a11a5bc15870f05472e9b0613298 (diff)
fix temporary creation rule
Diffstat (limited to 'Eigen/src/Core/Product.h')
-rw-r--r--Eigen/src/Core/Product.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/Product.h b/Eigen/src/Core/Product.h
index 18aaba341..5f49573aa 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -331,7 +331,7 @@ template<> struct ei_gemv_selector<OnTheRight,ColMajor,true>
enum {
// FIXME find a way to allow an inner stride on the result if ei_packet_traits<Scalar>::size==1
- EvalToDest = (Dest::Flags&ActualPacketAccessBit) && (Dest::InnerStrideAtCompileTime==1)
+ EvalToDest = Dest::InnerStrideAtCompileTime==1
};
Scalar* EIGEN_RESTRICT actualDest;