diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2016-05-25 14:54:31 +0200 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2016-05-25 14:54:31 +0200 |
| commit | 25f37fd6510d33fc2ad5900fd0a04d90abcb2086 (patch) | |
| tree | 401463dc975703cdda3d60424e56d6193810978f | |
| parent | d9680f5b36b10cadf0de01b2ef6df0bec899e3b6 (diff) | |
| download | rust-25f37fd6510d33fc2ad5900fd0a04d90abcb2086.tar.gz rust-25f37fd6510d33fc2ad5900fd0a04d90abcb2086.zip | |
Add notes that data-structures should potentially move to different crate.
| -rw-r--r-- | src/librustc_borrowck/bitslice.rs | 3 | ||||
| -rw-r--r-- | src/librustc_borrowck/indexed_set.rs | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/librustc_borrowck/bitslice.rs b/src/librustc_borrowck/bitslice.rs index 7a203b7f0b7..80fa86a007e 100644 --- a/src/librustc_borrowck/bitslice.rs +++ b/src/librustc_borrowck/bitslice.rs @@ -8,6 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// FIXME: move this to `rustc_data_structures` and potentially merge +// with `bitvec` there. + use std::mem; pub type Word = usize; diff --git a/src/librustc_borrowck/indexed_set.rs b/src/librustc_borrowck/indexed_set.rs index bf5eb10b8ed..feb01c63560 100644 --- a/src/librustc_borrowck/indexed_set.rs +++ b/src/librustc_borrowck/indexed_set.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +// FIXME: move this to `rustc_data_structures` + use std::fmt; use std::marker::PhantomData; use std::mem; |
