mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 03:39:01 +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,
|
||||
Rows,
|
||||
Cols,
|
||||
(MaxCols==1&&MaxRows!=1) ? RowMajor : ColMajor,
|
||||
(MaxCols==1&&MaxRows!=1) ? ColMajor : RowMajor,
|
||||
MaxRows,
|
||||
MaxCols
|
||||
> type;
|
||||
|
Loading…
x
Reference in New Issue
Block a user