diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2016-05-25 15:41:57 +0200 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2016-05-25 15:41:57 +0200 |
| commit | a28771cc971a0b750984a3ebd67402e21892566c (patch) | |
| tree | a576c02de6b554812fcf50cc5b98abce434733e2 | |
| parent | 58f1a4949d348ec95362d737d8b5555491baee55 (diff) | |
| download | rust-a28771cc971a0b750984a3ebd67402e21892566c.tar.gz rust-a28771cc971a0b750984a3ebd67402e21892566c.zip | |
remove `indexed_set::Indexed` trait.
| -rw-r--r-- | src/librustc_borrowck/indexed_set.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc_borrowck/indexed_set.rs b/src/librustc_borrowck/indexed_set.rs index feb01c63560..5e842c1c5ab 100644 --- a/src/librustc_borrowck/indexed_set.rs +++ b/src/librustc_borrowck/indexed_set.rs @@ -17,10 +17,6 @@ use std::ops::{Deref, DerefMut, Range}; use bitslice::{BitSlice, Word}; use bitslice::{bitwise, Union, Subtract}; -pub trait Indexed { - type Idx: Idx; -} - pub trait Idx: 'static { fn new(usize) -> Self; fn idx(&self) -> usize; |
