diff options
| author | bors <bors@rust-lang.org> | 2024-07-30 05:35:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-07-30 05:35:08 +0000 |
| commit | a8b8a070e08f153d5ae0f51d52ee3f13741a1f81 (patch) | |
| tree | 9d4cdb5ab1e4bad0bad70aa5534aa4b45d8dca34 /compiler/rustc_data_structures/src/work_queue.rs | |
| parent | a6796c10a1e84b83d2f3c1eea8ea71c995290deb (diff) | |
| parent | 8f712b5728bf279724b02237315f49c164ed5d19 (diff) | |
| download | rust-a8b8a070e08f153d5ae0f51d52ee3f13741a1f81.tar.gz rust-a8b8a070e08f153d5ae0f51d52ee3f13741a1f81.zip | |
Auto merge of #3773 - rust-lang:rustup-2024-07-30, r=oli-obk
Automatic Rustup
Diffstat (limited to 'compiler/rustc_data_structures/src/work_queue.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/work_queue.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/work_queue.rs b/compiler/rustc_data_structures/src/work_queue.rs index 9db6b6f20be..490d7d3ddd5 100644 --- a/compiler/rustc_data_structures/src/work_queue.rs +++ b/compiler/rustc_data_structures/src/work_queue.rs @@ -1,6 +1,7 @@ +use std::collections::VecDeque; + use rustc_index::bit_set::BitSet; use rustc_index::Idx; -use std::collections::VecDeque; /// A work queue is a handy data structure for tracking work left to /// do. (For example, basic blocks left to process.) It is basically a |
