Skip to content

Commit 26b1087

Browse files
committed
Allow beta specific clippy:type_repetition_in_bounds
1 parent 71129cb commit 26b1087

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/linalg/impl_linalg.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ where
857857
}
858858
}
859859

860-
#[allow(dead_code)]
860+
#[allow(dead_code, clippy::type_repetition_in_bounds)]
861861
fn kron_to_dyn<Sa, I, Sb, T>(a: &ArrayBase<Sa, IxDyn>, b: &ArrayBase<Sb, I>) -> Array<T, IxDyn>
862862
where
863863
T: Copy,
@@ -895,7 +895,7 @@ where
895895
}
896896
}
897897

898-
#[allow(dead_code)]
898+
#[allow(dead_code, clippy::type_repetition_in_bounds)]
899899
fn kron_same_size<Sa, I, Sb, T>(a: &ArrayBase<Sa, I>, b: &ArrayBase<Sb, I>) -> Array<T, I>
900900
where
901901
T: Copy,

0 commit comments

Comments
 (0)