Fix compilation issue with some compilers (when doing using Base::foo;, foo must be visible in the direct base class)

(transplanted from 33788b97dd2cd8662c598e14e1e901a7bd4df93b
)
This commit is contained in:
Gael Guennebaud 2013-06-18 00:48:47 +02:00
parent 5dca39eb8b
commit c7ba7f59d6

View File

@ -104,6 +104,7 @@ template<typename MatrixType> class TransposeImpl<MatrixType,Dense>
typedef typename internal::TransposeImpl_base<MatrixType>::type Base;
EIGEN_DENSE_PUBLIC_INTERFACE(Transpose<MatrixType>)
EIGEN_INHERIT_ASSIGNMENT_OPERATORS(TransposeImpl)
inline Index innerStride() const { return derived().nestedExpression().innerStride(); }
inline Index outerStride() const { return derived().nestedExpression().outerStride(); }