Skip to content

Commit aac73b2

Browse files
committed
rustc: Comments only: change XXX to FIXME
1 parent 52d3f55 commit aac73b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/middle/trans/reachable.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ fn traverse_public_mod(cx: &ctx, mod_id: node_id, m: &_mod) {
9595
}
9696

9797
fn traverse_public_item(cx: &ctx, item: @item) {
98-
// XXX: it shouldn't be necessary to do this
98+
// FIXME #6021: naming rmap shouldn't be necessary
9999
let rmap: &mut HashSet<node_id> = cx.rmap;
100100
if rmap.contains(&item.id) { return; }
101101
rmap.insert(item.id);
@@ -150,7 +150,7 @@ fn traverse_public_item(cx: &ctx, item: @item) {
150150
}
151151
152152
fn traverse_ty<'a, 'b>(ty: @Ty, cx: &'b ctx<'a>, v: visit::vt<&'b ctx<'a>>) {
153-
// XXX: it shouldn't be necessary to do this
153+
// FIXME #6021: naming rmap shouldn't be necessary
154154
let rmap: &mut HashSet<node_id> = cx.rmap;
155155
if rmap.contains(&ty.id) { return; }
156156
rmap.insert(ty.id);

0 commit comments

Comments
 (0)