From 39a119074aa27234a68bcf57899c8c4e015cd478 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 6 May 2013 20:27:59 -0400 Subject: [PATCH] appease the tidy gods with respect to a FIXME --- src/librustc/middle/typeck/check/regionck.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc/middle/typeck/check/regionck.rs b/src/librustc/middle/typeck/check/regionck.rs index 491c7fadb18bd..6db6b7556aee4 100644 --- a/src/librustc/middle/typeck/check/regionck.rs +++ b/src/librustc/middle/typeck/check/regionck.rs @@ -157,7 +157,7 @@ pub fn regionck_fn(fcx: @mut FnCtxt, blk: &ast::blk) { } fn regionck_visitor() -> rvt { - // FIXME(#3238) should use visit_pat, not visit_arm/visit_local, + // (*) FIXME(#3238) should use visit_pat, not visit_arm/visit_local, // However, right now we run into an issue whereby some free // regions are not properly related if they appear within the // types of arguments that must be inferred. This could be @@ -167,7 +167,7 @@ fn regionck_visitor() -> rvt { visit::mk_vt(@visit::Visitor {visit_item: visit_item, visit_expr: visit_expr, - //visit_pat: visit_pat, // (*) see FIXME above + //visit_pat: visit_pat, // (*) see above visit_arm: visit_arm, visit_local: visit_local,