1
Fork 0

Remove two FIXMEs from the long-dead issue 3226

This commit is contained in:
Ben Striegel 2013-01-29 21:32:52 -05:00
parent f08af9a7a5
commit 610fd6bc93

View file

@ -1191,11 +1191,11 @@ struct GraphNode {
span: span, span: span,
mut classification: Classification, mut classification: Classification,
mut value: GraphNodeValue, mut value: GraphNodeValue,
head_edge: [mut uint * 2], // FIXME(#3226)--should not need mut head_edge: [uint * 2],
} }
struct GraphEdge { struct GraphEdge {
next_edge: [mut uint * 2], // FIXME(#3226)--should not need mut next_edge: [uint * 2],
constraint: Constraint, constraint: Constraint,
span: span, span: span,
} }