From 9d8dc689c73ae1738a0c02e68e5748e16499c0cd Mon Sep 17 00:00:00 2001 From: Oliver Schneider Date: Fri, 17 Feb 2017 13:41:59 +0100 Subject: [PATCH] rustfmt again --- clippy_lints/src/types.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clippy_lints/src/types.rs b/clippy_lints/src/types.rs index 0d7459e18..17d4ebd87 100644 --- a/clippy_lints/src/types.rs +++ b/clippy_lints/src/types.rs @@ -539,7 +539,8 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CastPass { UNNECESSARY_CAST, expr.span, &format!("casting to the same type is unnecessary (`{}` -> `{}`)", - cast_from, cast_to)); + cast_from, + cast_to)); } }, }