mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-11 11:19:02 +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:
parent
c49e93440f
commit
eabc7a4031
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user