Skip to content

Commit 610fd6b

Browse files
committed
Remove two FIXMEs from the long-dead issue 3226
1 parent f08af9a commit 610fd6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/middle/typeck/infer/region_inference.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1191,11 +1191,11 @@ struct GraphNode {
11911191
span: span,
11921192
mut classification: Classification,
11931193
mut value: GraphNodeValue,
1194-
head_edge: [mut uint * 2], // FIXME(#3226)--should not need mut
1194+
head_edge: [uint * 2],
11951195
}
11961196

11971197
struct GraphEdge {
1198-
next_edge: [mut uint * 2], // FIXME(#3226)--should not need mut
1198+
next_edge: [uint * 2],
11991199
constraint: Constraint,
12001200
span: span,
12011201
}

0 commit comments

Comments
 (0)