File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
src/librustc_borrowck/borrowck/mir Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ use std::iter;
20
20
use std:: ops:: Index ;
21
21
22
22
use super :: abs_domain:: { AbstractElem , Lift } ;
23
- use indexed_set:: { Idx , Indexed } ;
23
+ use indexed_set:: { Idx } ;
24
24
25
25
// This submodule holds some newtype'd Index wrappers that are using
26
26
// NonZero to ensure that Option<Index> occupies only a single word.
@@ -60,14 +60,6 @@ mod indexes {
60
60
pub use self :: indexes:: MovePathIndex ;
61
61
pub use self :: indexes:: MoveOutIndex ;
62
62
63
- impl < ' tcx > Indexed for MovePath < ' tcx > {
64
- type Idx = MovePathIndex ;
65
- }
66
-
67
- impl Indexed for MoveOut {
68
- type Idx = MoveOutIndex ;
69
- }
70
-
71
63
impl self :: indexes:: MoveOutIndex {
72
64
pub fn move_path_index ( & self , move_data : & MoveData ) -> MovePathIndex {
73
65
move_data. moves [ self . idx ( ) ] . path
You can’t perform that action at this time.
0 commit comments