From ff6a46105d86e92753858c1b2aea8bcaf4575819 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Fri, 16 Apr 2010 10:13:32 -0400 Subject: * Refactoring of the class hierarchy: introduction of DenseDirectAccessBase, removal of extra _Base/_Options template parameters. * Introduction of strides-at-compile-time so for example the optimized code really knows when it needs to evaluate to a temporary * StorageKind / XprKind * Quaternion::setFromTwoVectors: use JacobiSVD instead of SVD * ComplexSchur: support the 1x1 case --- Eigen/src/Core/CwiseUnaryView.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Eigen/src/Core/CwiseUnaryView.h') diff --git a/Eigen/src/Core/CwiseUnaryView.h b/Eigen/src/Core/CwiseUnaryView.h index 2198ed226..9ce03d64b 100644 --- a/Eigen/src/Core/CwiseUnaryView.h +++ b/Eigen/src/Core/CwiseUnaryView.h @@ -52,16 +52,16 @@ struct ei_traits > }; }; -template +template class CwiseUnaryViewImpl; template class CwiseUnaryView : ei_no_assignment_operator, - public CwiseUnaryViewImpl::StorageType> + public CwiseUnaryViewImpl::StorageKind> { public: - typedef typename CwiseUnaryViewImpl::StorageType>::Base Base; + typedef typename CwiseUnaryViewImpl::StorageKind>::Base Base; EIGEN_GENERIC_PUBLIC_INTERFACE_NEW(CwiseUnaryView) inline CwiseUnaryView(const MatrixType& mat, const ViewOp& func = ViewOp()) -- cgit v1.2.3