about summary refs log tree commit diff
path: root/src/librustc_data_structures/graph/implementation
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-09-30 13:33:15 +0000
committerbors <bors@rust-lang.org>2019-09-30 13:33:15 +0000
commit22bc9e1d9ca49ee4f5cd953088ab09c238a6dd26 (patch)
tree1447e329ac138963f386d612dd9eb78f8a03dafe /src/librustc_data_structures/graph/implementation
parente0436d912df090b0c3cba9a8b818aab408756e49 (diff)
parent64f61c7888c9cb2cbd7d37f87a6cbec2858ee409 (diff)
downloadrust-22bc9e1d9ca49ee4f5cd953088ab09c238a6dd26.tar.gz
rust-22bc9e1d9ca49ee4f5cd953088ab09c238a6dd26.zip
Auto merge of #64778 - csmoe:index, r=eddyb
Introduce librustc_index crate

Closes #50592
Diffstat (limited to 'src/librustc_data_structures/graph/implementation')
-rw-r--r--src/librustc_data_structures/graph/implementation/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/graph/implementation/mod.rs b/src/librustc_data_structures/graph/implementation/mod.rs
index d2699004c81..052a09c0774 100644
--- a/src/librustc_data_structures/graph/implementation/mod.rs
+++ b/src/librustc_data_structures/graph/implementation/mod.rs
@@ -20,7 +20,7 @@
 //! the field `next_edge`). Each of those fields is an array that should
 //! be indexed by the direction (see the type `Direction`).
 
-use crate::bit_set::BitSet;
+use rustc_index::bit_set::BitSet;
 use crate::snapshot_vec::{SnapshotVec, SnapshotVecDelegate};
 use std::fmt::Debug;
 use std::usize;