Skip to content

Commit 3eaba4b

Browse files
committed
---
yaml --- r: 56383 b: refs/heads/auto c: aac73b2 h: refs/heads/master i: 56381: 41c144f 56379: 6618b48 56375: 8077c0f 56367: 3fc4d76 56351: 5808155 56319: cb661b0 v: v3
1 parent e81b759 commit 3eaba4b

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
@@ -14,6 +14,6 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: 52d3f5558e663c4fab407a9ab703132b4ef6443d
17+
refs/heads/auto: aac73b24ae98b92489a5d175fb04c4aed24d8991
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
1919
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c

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