Skip to content

Commit 768a7a8

Browse files
committed
---
yaml --- r: 57739 b: refs/heads/incoming c: aac73b2 h: refs/heads/master i: 57737: d47f5e0 57735: 0766b60 v: v3
1 parent d44fd92 commit 768a7a8

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
@@ -6,7 +6,7 @@ refs/heads/try: bf67eb2362b7d0f37012f2d6dac604c3bbacd2c6
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/incoming: 52d3f5558e663c4fab407a9ab703132b4ef6443d
9+
refs/heads/incoming: aac73b24ae98b92489a5d175fb04c4aed24d8991
1010
refs/heads/dist-snap: 00dbbd01c2aee72982b3e0f9511ae1d4428c3ba9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/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)