diff options
| author | Scott A Carr <s.carr1024@gmail.com> | 2016-06-01 10:23:56 -0700 |
|---|---|---|
| committer | Scott A Carr <s.carr1024@gmail.com> | 2016-06-01 10:23:56 -0700 |
| commit | 79bf586d4b12456817578d75b305b3027e96d44e (patch) | |
| tree | 3aa59b70bc72547d5252b0256c455bd8cc4aadae /src/librustc_data_structures | |
| parent | 9d34c280d92e1bc443c9ae10744e5b73a71e8915 (diff) | |
| download | rust-79bf586d4b12456817578d75b305b3027e96d44e.tar.gz rust-79bf586d4b12456817578d75b305b3027e96d44e.zip | |
switch to BitVector, simplify target_block logic
clarify comments and panic message
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/bitvec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/bitvec.rs b/src/librustc_data_structures/bitvec.rs index cb648038c34..79d3f0cf688 100644 --- a/src/librustc_data_structures/bitvec.rs +++ b/src/librustc_data_structures/bitvec.rs @@ -11,7 +11,7 @@ use std::iter::FromIterator; /// A very simple BitVector type. -#[derive(Clone)] +#[derive(Clone, Debug, PartialEq)] pub struct BitVector { data: Vec<u64>, } |
