File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ mutability M_L, and a lifetime L_L where:
33
33
- immutable/mutable: the data cannot be moved or mutated
34
34
- The lifetime L_L indicates the *scope* of the loan.
35
35
36
- XXX --- much more needed, don't have time to write this all up now
36
+ FIXME #4730 --- much more needed, don't have time to write this all up now
37
37
38
38
*/
39
39
Original file line number Diff line number Diff line change @@ -516,7 +516,7 @@ pub fn specialize(cx: @MatchCheckCtxt,
516
516
}
517
517
def_variant( _, _) => None ,
518
518
def_struct( * ) => {
519
- // XXX : Is this right? --pcw
519
+ // FIXME #4731 : Is this right? --pcw
520
520
let new_args;
521
521
match args {
522
522
Some ( args) => new_args = args,
@@ -545,7 +545,7 @@ pub fn specialize(cx: @MatchCheckCtxt,
545
545
match cx. tcx . def_map . get ( pat_id) {
546
546
def_variant( _, variant_id) => {
547
547
if variant ( variant_id) == ctor_id {
548
- // XXX : Is this right? --pcw
548
+ // FIXME #4731 : Is this right? --pcw
549
549
let args = flds. map ( |ty_field| {
550
550
match flds. find ( |f|
551
551
f. ident == ty_field. ident ) {
Original file line number Diff line number Diff line change @@ -1754,7 +1754,8 @@ impl @Liveness {
1754
1754
// used by ExitNode would be arguments or fields in a ctor.
1755
1755
// we give a slightly different error message in those cases.
1756
1756
if lnk == ExitNode {
1757
- // XXX this seems like it should be reported in the borrow checker
1757
+ // FIXME #4715: this seems like it should be reported in the
1758
+ // borrow checker
1758
1759
let vk = self . ir . var_kinds [ * var] ;
1759
1760
match vk {
1760
1761
Arg ( _, name, _) => {
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ pub fn check_crate(tcx: ty::ctxt,
131
131
}
132
132
}
133
133
} else {
134
- // XXX : External crates.
134
+ // FIXME #4732 : External crates.
135
135
}
136
136
}
137
137
method_param(method_param {
@@ -195,7 +195,7 @@ pub fn check_crate(tcx: ty::ctxt,
195
195
}
196
196
}
197
197
} else {
198
- // XXX : External crates.
198
+ // FIXME #4732 : External crates.
199
199
}
200
200
}
201
201
}
You can’t perform that action at this time.
0 commit comments