about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/graph/mod.rs
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2025-05-06 12:54:03 +1000
committerZalathar <Zalathar@users.noreply.github.com>2025-05-06 14:35:06 +1000
commit9e7fb67838ce06e418d078c4d04b0ff578bd1f43 (patch)
tree3fc145c155e13deb0ba3767d890aef0997a23d18 /compiler/rustc_data_structures/src/graph/mod.rs
parent4a0969e06dbeaaa43914d2d00b2e843d49aa3886 (diff)
downloadrust-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.rs2
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;