Skip to content

Commit e99702f

Browse files
spastorinoPaul Daniel Faria
authored and
Paul Daniel Faria
committed
TODO -> FIXME
1 parent 88b02ef commit e99702f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/librustc_mir/transform/nll/infer.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ pub struct InferenceContext {
1313

1414
pub struct InferenceError {
1515
pub constraint_point: Location,
16-
pub name: (), // TODO(nashenas88) RegionName
16+
pub name: (), // FIXME(nashenas88) RegionName
1717
}
1818

1919
newtype_index!(InferenceErrorIndex);
2020

2121
struct VarDefinition {
22-
name: (), // TODO(nashenas88) RegionName
22+
name: (), // FIXME(nashenas88) RegionName
2323
value: Region,
2424
capped: bool,
2525
}
@@ -189,12 +189,12 @@ impl<'a, 'gcx: 'tcx, 'tcx: 'a> Dfs<'a, 'gcx, 'tcx> {
189189
};
190190

191191
if successor_points.is_empty() {
192-
// TODO handle free regions
192+
// FIXME handle free regions
193193
// If we reach the END point in the graph, then copy
194194
// over any skolemized end points in the `from_region`
195195
// and make sure they are included in the `to_region`.
196196
// for region_decl in self.infcx.tcx.tables.borrow().free_region_map() {
197-
// // TODO(nashenas88) figure out skolemized_end points
197+
// // FIXME(nashenas88) figure out skolemized_end points
198198
// let block = self.env.graph.skolemized_end(region_decl.name);
199199
// let skolemized_end_point = Location {
200200
// block,

0 commit comments

Comments
 (0)