aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/Product.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-23 11:36:22 -0400
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2010-04-23 11:36:22 -0400
commita16ba80bfa492f68cc699979ccda63519d782421 (patch)
treef8d792401539e56e776d67904bc57104742efc41 /Eigen/src/Core/Product.h
parent58e7297859f4a454218e94d346e4839961d30409 (diff)
* remove ei_block_direct_access_status
* remove HasDirectAccess / NoDirectAccess constants
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 3e6fbf065..791fddda9 100644
--- a/Eigen/src/Core/Product.h
+++ b/Eigen/src/Core/Product.h
@@ -285,7 +285,7 @@ class GeneralProduct<Lhs, Rhs, GemvProduct>
{
ei_assert(m_lhs.rows() == dst.rows() && m_rhs.cols() == dst.cols());
ei_gemv_selector<Side,(int(MatrixType::Flags)&RowMajorBit) ? RowMajor : ColMajor,
- bool(ei_blas_traits<MatrixType>::ActualAccess)>::run(*this, dst, alpha);
+ bool(ei_blas_traits<MatrixType>::HasUsableDirectAccess)>::run(*this, dst, alpha);
}
};