bug #1285: fix regression introduced in changeset 00c29c2caef8fb0c6b1d2ba5ecdf6780c0c766d4

This commit is contained in:
Gael Guennebaud 2016-09-13 07:58:39 +02:00
parent e4d4d15588
commit 73c8f2f697
2 changed files with 2 additions and 2 deletions

View File

@ -436,7 +436,7 @@ template<typename _MatrixType> class FullPivLU
Index m_nonzero_pivots;
RealScalar m_l1_norm;
RealScalar m_maxpivot, m_prescribedThreshold;
char m_det_pq;
signed char m_det_pq;
bool m_isInitialized, m_usePrescribedThreshold;
};

View File

@ -284,7 +284,7 @@ template<typename _MatrixType> class PartialPivLU
PermutationType m_p;
TranspositionType m_rowsTranspositions;
RealScalar m_l1_norm;
char m_det_p;
signed char m_det_p;
bool m_isInitialized;
};