remove Like1DArrayBit in Transpose

This commit is contained in:
Gael Guennebaud 2008-05-22 12:25:11 +00:00
parent 522e24f2d7
commit 9ab6e186eb
2 changed files with 1 additions and 5 deletions

View File

@ -331,10 +331,6 @@ template<typename Lhs, typename Rhs, int EvalMode> class Product : ei_no_assignm
return res;
}
/** \internal */
template<typename DestDerived, int RhsAlignment>
void _cacheFriendlyEvalImpl(DestDerived& res) const EIGEN_DONT_INLINE;
protected:
const LhsNested m_lhs;
const RhsNested m_rhs;

View File

@ -48,7 +48,7 @@ struct ei_traits<Transpose<MatrixType> >
ColsAtCompileTime = MatrixType::RowsAtCompileTime,
MaxRowsAtCompileTime = MatrixType::MaxColsAtCompileTime,
MaxColsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
Flags = int(_MatrixTypeNested::Flags) ^ RowMajorBit,
Flags = (int(_MatrixTypeNested::Flags) ^ RowMajorBit) & ~Like1DArrayBit,
CoeffReadCost = _MatrixTypeNested::CoeffReadCost
};
};