PR 465: Fix issue in RowMajor assignment in plain_matrix_type_row_major::type

The type should be RowMajor
This commit is contained in:
Justin Carpentier 2018-08-10 14:30:06 +02:00
parent c49e93440f
commit eabc7a4031

View File

@ -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;