diff options
| author | csmoe <csmoe@msn.com> | 2019-09-26 05:30:10 +0000 |
|---|---|---|
| committer | csmoe <csmoe@msn.com> | 2019-09-29 16:11:30 +0000 |
| commit | d20183dbbff4b59da48aedf28e1eb38f55681b58 (patch) | |
| tree | cb6b2f8a50e43b2f73b8c3243376850c0c0398bb /src/librustc_data_structures/graph/implementation | |
| parent | 17990637b3e4e17fd5fcd3a94bf03963c38b5753 (diff) | |
| download | rust-d20183dbbff4b59da48aedf28e1eb38f55681b58.tar.gz rust-d20183dbbff4b59da48aedf28e1eb38f55681b58.zip | |
remove bit_set re-export from rustc_data_structures
Diffstat (limited to 'src/librustc_data_structures/graph/implementation')
| -rw-r--r-- | src/librustc_data_structures/graph/implementation/mod.rs | 2 |
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; |
