about summary refs log tree commit diff
path: root/src/librustc_data_structures/work_queue.rs
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-02-09 00:16:06 +0100
committerGitHub <noreply@github.com>2019-02-09 00:16:06 +0100
commit068a9266222ff695e48e4ebeaf7add7ee0367f1d (patch)
tree34623c614c288fc44a9d0b0b6299e8c5652c83e6 /src/librustc_data_structures/work_queue.rs
parent5e208f698289676690db5943941a0368447bc7ca (diff)
parent3e2b5a4b08d9647f7438f4e945d4c8b37c36a58c (diff)
downloadrust-068a9266222ff695e48e4ebeaf7add7ee0367f1d.tar.gz
rust-068a9266222ff695e48e4ebeaf7add7ee0367f1d.zip
Rollup merge of #58312 - taiki-e:librustc_data_structures-2018, r=Centril
librustc_data_structures => 2018

Transitions `librustc_data_structures` to Rust 2018; cc #58099

r? @Centril
Diffstat (limited to 'src/librustc_data_structures/work_queue.rs')
-rw-r--r--src/librustc_data_structures/work_queue.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_data_structures/work_queue.rs b/src/librustc_data_structures/work_queue.rs
index 0a928de7961..06418b1051a 100644
--- a/src/librustc_data_structures/work_queue.rs
+++ b/src/librustc_data_structures/work_queue.rs
@@ -1,5 +1,5 @@
-use bit_set::BitSet;
-use indexed_vec::Idx;
+use crate::bit_set::BitSet;
+use crate::indexed_vec::Idx;
 use std::collections::VecDeque;
 
 /// A work queue is a handy data structure for tracking work left to