Skip to content

Commit 4b7e80a

Browse files
committed
---
yaml --- r: 55772 b: refs/heads/master c: aac73b2 h: refs/heads/master v: v3
1 parent ca3d668 commit 4b7e80a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 52d3f5558e663c4fab407a9ab703132b4ef6443d
2+
refs/heads/master: aac73b24ae98b92489a5d175fb04c4aed24d8991
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 79a2b2eafc3c766cecec8a5f76317693bae9ed17
55
refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a

trunk/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)