Skip to content

Commit 2bb238f

Browse files
authored
Implement Clone and Debug for SccGraph (#161)
1 parent f7d76f7 commit 2bb238f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/scc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ use crate::internal_scc;
3131
///
3232
/// assert_eq!(graph.scc(), [&[0, 1, 2][..], &[3], &[4]]);
3333
/// ```
34+
#[derive(Clone, Debug)]
3435
pub struct SccGraph {
3536
internal: internal_scc::SccGraph,
3637
}

0 commit comments

Comments
 (0)