Skip to content

Commit 08a2a48

Browse files
matsu7874koba-e964
andauthored
Remove Clone trait that doesn't need to be explicitly required
Co-authored-by: Hiroki Kobayashi <[email protected]>
1 parent ec2e30b commit 08a2a48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal_scc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pub struct Csr<E> {
55

66
impl<E> Csr<E>
77
where
8-
E: Copy + Clone,
8+
E: Copy,
99
{
1010
pub fn new(n: usize, edges: &[(usize, E)], init: E) -> Self {
1111
let mut csr = Csr {

0 commit comments

Comments
 (0)