We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666c365 commit 9d29994Copy full SHA for 9d29994
src/librustc_data_structures/graph/scc/mod.rs
@@ -122,8 +122,8 @@ struct SccsConstruction<'c, G: DirectedGraph + WithNumNodes + WithSuccessors + '
122
123
/// A set used to strip duplicates. As we accumulate successors
124
/// into the successors_stack, we sometimes get duplicate entries.
125
- /// We use this set to remove those -- we keep it around between
126
- /// successors to amortize memory allocation costs.
+ /// We use this set to remove those -- we also keep its storage
+ /// around between successors to amortize memory allocation costs.
127
duplicate_set: FxHashSet<S>,
128
129
scc_data: SccData<S>,
0 commit comments