forked from M-Labs/nalgebra
Fix rebase-induced compilation error.
This commit is contained in:
parent
aeb9f7ea39
commit
6699039fec
@ -66,7 +66,8 @@ where
|
||||
let min_nrows_ncols = nrows.min(ncols);
|
||||
let mut p = PermutationSequence::identity_generic(min_nrows_ncols);
|
||||
|
||||
let mut diag = unsafe { MatrixMN::new_uninitialized_generic(min_nrows_ncols, U1) };
|
||||
let mut diag =
|
||||
unsafe { crate::unimplemented_or_uninitialized_generic!(min_nrows_ncols, U1) };
|
||||
|
||||
if min_nrows_ncols.value() == 0 {
|
||||
return ColPivQR {
|
||||
|
Loading…
Reference in New Issue
Block a user