mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
PR 465: Fix issue in RowMajor assignment in plain_matrix_type_row_major::type
The type should be RowMajor
This commit is contained in:
@@ -405,7 +405,7 @@ template<typename T> struct plain_matrix_type_row_major
|
|||||||
typedef Matrix<typename traits<T>::Scalar,
|
typedef Matrix<typename traits<T>::Scalar,
|
||||||
Rows,
|
Rows,
|
||||||
Cols,
|
Cols,
|
||||||
(MaxCols==1&&MaxRows!=1) ? RowMajor : ColMajor,
|
(MaxCols==1&&MaxRows!=1) ? ColMajor : RowMajor,
|
||||||
MaxRows,
|
MaxRows,
|
||||||
MaxCols
|
MaxCols
|
||||||
> type;
|
> type;
|
||||||
|
|||||||
Reference in New Issue
Block a user