about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/graph/mod.rs
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2023-04-19 10:57:17 +0000
committerMaybe Waffle <waffle.lapkin@gmail.com>2023-04-24 13:53:35 +0000
commite496fbec922b22d9b506ba55386c482b4bf06378 (patch)
tree4dfaea897edd1520be88ed691073ea840143cec8 /compiler/rustc_data_structures/src/graph/mod.rs
parent64bcb326516ef7490db46de88b87a4c0990097fe (diff)
downloadrust-e496fbec922b22d9b506ba55386c482b4bf06378.tar.gz
rust-e496fbec922b22d9b506ba55386c482b4bf06378.zip
Split `{Idx, IndexVec, IndexSlice}` into their own modules
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 3560df6e5e2..e06ab2fe36b 100644
--- a/compiler/rustc_data_structures/src/graph/mod.rs
+++ b/compiler/rustc_data_structures/src/graph/mod.rs
@@ -1,4 +1,4 @@
-use rustc_index::vec::Idx;
+use rustc_index::Idx;
 
 pub mod dominators;
 pub mod implementation;