mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
* remove class DenseDirectAccessBase
* remove member XprBase typedefs, use ei_dense_xpr_base * remove member _HasDirectAccess typedefs, use ei_has_direct_access
This commit is contained in:
@@ -39,11 +39,11 @@ template<typename MatrixTypeA, typename MatrixTypeB, bool SwapPointers> struct e
|
||||
* \brief Dense storage base class for matrices and arrays.
|
||||
**/
|
||||
template<typename Derived>
|
||||
class DenseStorageBase : public DenseDirectAccessBase<Derived>
|
||||
class DenseStorageBase : public ei_dense_xpr_base<Derived>::type
|
||||
{
|
||||
public:
|
||||
enum { Options = ei_traits<Derived>::Options };
|
||||
typedef typename ei_traits<Derived>::XprBase Base;
|
||||
typedef typename ei_dense_xpr_base<Derived>::type Base;
|
||||
typedef typename Base::PlainObject PlainObject;
|
||||
typedef typename Base::Scalar Scalar;
|
||||
typedef typename Base::PacketScalar PacketScalar;
|
||||
|
||||
Reference in New Issue
Block a user