Skip to content

Commit 25f37fd

Browse files
committed
Add notes that data-structures should potentially move to different crate.
1 parent d9680f5 commit 25f37fd

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/librustc_borrowck/bitslice.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// FIXME: move this to `rustc_data_structures` and potentially merge
12+
// with `bitvec` there.
13+
1114
use std::mem;
1215

1316
pub type Word = usize;

src/librustc_borrowck/indexed_set.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// FIXME: move this to `rustc_data_structures`
12+
1113
use std::fmt;
1214
use std::marker::PhantomData;
1315
use std::mem;

0 commit comments

Comments
 (0)