File tree Expand file tree Collapse file tree 5 files changed +8
-7
lines changed
branches/snap-stage3/src/librustc/middle Expand file tree Collapse file tree 5 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 09bb07bed9166105ea961a42b5fff7739ae0d2e9
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: e0281d991c7150a5cf1921e89a62e9427d0a6de6
4
+ refs/heads/snap-stage3: 2db3175c76b51e5124cfa135de7ceeea8ceee0d6
5
5
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
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