From d499d2a9a7c481a233fec1bf37245d20a44e7af5 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 31 Aug 2015 08:19:11 +0200 Subject: [PATCH] loops: remove debugging print --- src/loops.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/loops.rs b/src/loops.rs index fe901794d6c..f6247dd8419 100644 --- a/src/loops.rs +++ b/src/loops.rs @@ -192,7 +192,6 @@ impl<'v, 't> Visitor<'v> for VarVisitor<'v, 't> { /// for &T and &mut T, such as Vec. fn is_ref_iterable_type(cx: &Context, e: &Expr) -> bool { let ty = walk_ptrs_ty(cx.tcx.expr_ty(e)); - println!("mt {:?} {:?}", e, ty); is_array(ty) || match_type(cx, ty, &VEC_PATH) || match_type(cx, ty, &LL_PATH) ||