about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2017-08-15 07:55:06 +0200
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2017-08-15 07:55:06 +0200
commit17197c660c9cc2e29d27d496a5c65f7df39fd858 (patch)
tree94d95eea6768816c690436b505fcc23d49887064
parentb6b9690a76d4dd4796ac5aaef71385b9240452af (diff)
downloadrust-17197c660c9cc2e29d27d496a5c65f7df39fd858.tar.gz
rust-17197c660c9cc2e29d27d496a5c65f7df39fd858.zip
Remove fixme
-rw-r--r--src/librustc_typeck/check/writeback.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustc_typeck/check/writeback.rs b/src/librustc_typeck/check/writeback.rs
index 8ebf55258ad..27dc346af32 100644
--- a/src/librustc_typeck/check/writeback.rs
+++ b/src/librustc_typeck/check/writeback.rs
@@ -168,7 +168,6 @@ impl<'cx, 'gcx, 'tcx> Visitor<'gcx> for WritebackCx<'cx, 'gcx, 'tcx> {
 
         if let hir::ExprClosure(_, _, body, _, _) = e.node {
             let body = self.fcx.tcx.hir.body(body);
-            // FIXME: Why visit the args here?
             for arg in &body.arguments {
                 self.visit_node_id(e.span, arg.hir_id);
             }