We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f08af9a commit 610fd6bCopy full SHA for 610fd6b
src/librustc/middle/typeck/infer/region_inference.rs
@@ -1191,11 +1191,11 @@ struct GraphNode {
1191
span: span,
1192
mut classification: Classification,
1193
mut value: GraphNodeValue,
1194
- head_edge: [mut uint * 2], // FIXME(#3226)--should not need mut
+ head_edge: [uint * 2],
1195
}
1196
1197
struct GraphEdge {
1198
- next_edge: [mut uint * 2], // FIXME(#3226)--should not need mut
+ next_edge: [uint * 2],
1199
constraint: Constraint,
1200
1201
0 commit comments