mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-13 01:43:13 +08:00
Fix conversion warnings
This commit is contained in:
parent
7d10c78738
commit
115da6a1ea
@ -369,8 +369,8 @@ struct partial_lu_impl
|
|||||||
Index first_zero_pivot = -1;
|
Index first_zero_pivot = -1;
|
||||||
for(Index k = 0; k < endk; ++k)
|
for(Index k = 0; k < endk; ++k)
|
||||||
{
|
{
|
||||||
Index rrows = rows-k-1;
|
int rrows = internal::convert_index<int>(rows-k-1);
|
||||||
Index rcols = cols-k-1;
|
int rcols = internal::convert_index<int>(cols-k-1);
|
||||||
|
|
||||||
Index row_of_biggest_in_col;
|
Index row_of_biggest_in_col;
|
||||||
Score biggest_in_corner
|
Score biggest_in_corner
|
||||||
|
Loading…
x
Reference in New Issue
Block a user