diff options
| author | Zalathar <Zalathar@users.noreply.github.com> | 2025-05-06 12:54:03 +1000 |
|---|---|---|
| committer | Zalathar <Zalathar@users.noreply.github.com> | 2025-05-06 14:35:06 +1000 |
| commit | 9e7fb67838ce06e418d078c4d04b0ff578bd1f43 (patch) | |
| tree | 3fc145c155e13deb0ba3767d890aef0997a23d18 /compiler/rustc_data_structures/src/graph/mod.rs | |
| parent | 4a0969e06dbeaaa43914d2d00b2e843d49aa3886 (diff) | |
| download | rust-9e7fb67838ce06e418d078c4d04b0ff578bd1f43.tar.gz rust-9e7fb67838ce06e418d078c4d04b0ff578bd1f43.zip | |
Rename `graph::implementation::Graph` to `LinkedGraph`
Diffstat (limited to 'compiler/rustc_data_structures/src/graph/mod.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/graph/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/graph/mod.rs b/compiler/rustc_data_structures/src/graph/mod.rs index 4a1e5db6768..20416b472b2 100644 --- a/compiler/rustc_data_structures/src/graph/mod.rs +++ b/compiler/rustc_data_structures/src/graph/mod.rs @@ -1,8 +1,8 @@ use rustc_index::Idx; pub mod dominators; -pub mod implementation; pub mod iterate; +pub mod linked_graph; mod reference; pub mod reversed; pub mod scc; |
