appease the tidy gods with respect to a FIXME

This commit is contained in:
Niko Matsakis 2013-05-06 20:27:59 -04:00
parent cd164cf8b5
commit 39a119074a

View File

@ -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,