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,
|
||||
Rows,
|
||||
Cols,
|
||||
(MaxCols==1&&MaxRows!=1) ? RowMajor : ColMajor,
|
||||
(MaxCols==1&&MaxRows!=1) ? ColMajor : RowMajor,
|
||||
MaxRows,
|
||||
MaxCols
|
||||
> type;
|
||||
|
||||
Reference in New Issue
Block a user