diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2023-04-25 02:33:25 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-25 02:33:25 +0900 |
| commit | cefb479242629f6b8ddf2cd0e93e54da7f3f493e (patch) | |
| tree | cc416c2987d674e0ea3c9ff867897c7e24908024 /compiler/rustc_data_structures/src/work_queue.rs | |
| parent | 42467d57cbe48ab2273a9c72b60708e2de2e362f (diff) | |
| parent | c0daff08c761ff6810b6bfebba17d9b8d31291a3 (diff) | |
| download | rust-cefb479242629f6b8ddf2cd0e93e54da7f3f493e.tar.gz rust-cefb479242629f6b8ddf2cd0e93e54da7f3f493e.zip | |
Rollup merge of #110539 - WaffleLapkin:split_index_vec&slice, r=cjgillot
Move around `{Idx, IndexVec, IndexSlice}` adjacent code
r? ``@scottmcm``
Diffstat (limited to 'compiler/rustc_data_structures/src/work_queue.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/work_queue.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/work_queue.rs b/compiler/rustc_data_structures/src/work_queue.rs index 10317f1afff..9db6b6f20be 100644 --- a/compiler/rustc_data_structures/src/work_queue.rs +++ b/compiler/rustc_data_structures/src/work_queue.rs @@ -1,5 +1,5 @@ use rustc_index::bit_set::BitSet; -use rustc_index::vec::Idx; +use rustc_index::Idx; use std::collections::VecDeque; /// A work queue is a handy data structure for tracking work left to |
