diff options
| author | Maybe Waffle <waffle.lapkin@gmail.com> | 2024-04-14 15:51:29 +0000 | 
|---|---|---|
| committer | Maybe Waffle <waffle.lapkin@gmail.com> | 2024-04-14 15:51:29 +0000 | 
| commit | f5144938bd33af48a1b06fc5e11f7f30132be895 (patch) | |
| tree | 36e8b0ff08e22f0dfd141987f253def705a7ed9a /compiler/rustc_data_structures/src/graph/scc | |
| parent | 0d5fc9bf584f0e8700f0c3d2854bb6c70453f624 (diff) | |
| download | rust-f5144938bd33af48a1b06fc5e11f7f30132be895.tar.gz rust-f5144938bd33af48a1b06fc5e11f7f30132be895.zip | |
Rename `WithNumEdges` => `NumEdges` and `WithStartNode` => `StartNode`
Diffstat (limited to 'compiler/rustc_data_structures/src/graph/scc')
| -rw-r--r-- | compiler/rustc_data_structures/src/graph/scc/mod.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/compiler/rustc_data_structures/src/graph/scc/mod.rs b/compiler/rustc_data_structures/src/graph/scc/mod.rs index f8f2f3cf0ce..1cd0edfe57f 100644 --- a/compiler/rustc_data_structures/src/graph/scc/mod.rs +++ b/compiler/rustc_data_structures/src/graph/scc/mod.rs @@ -7,7 +7,7 @@ use crate::fx::FxHashSet; use crate::graph::vec_graph::VecGraph; -use crate::graph::{DirectedGraph, Successors, WithNumEdges}; +use crate::graph::{DirectedGraph, NumEdges, Successors}; use rustc_index::{Idx, IndexSlice, IndexVec}; use std::ops::Range; @@ -97,7 +97,7 @@ impl<N: Idx, S: Idx + Ord> DirectedGraph for Sccs<N, S> { } } -impl<N: Idx, S: Idx + Ord> WithNumEdges for Sccs<N, S> { +impl<N: Idx, S: Idx + Ord> NumEdges for Sccs<N, S> { fn num_edges(&self) -> usize { self.scc_data.all_successors.len() } | 
