From bdffaf3ea160522255766f82d1439df38bca426d Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 5 Jun 2016 13:00:44 -0700 Subject: [PATCH] Re-enable clippy lint "useless_let_if_seq" This reverts commit 4e6cd2d63f06bc4fca9ecec8d16b27960dfb78e0. --- serde_codegen/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/serde_codegen/src/lib.rs b/serde_codegen/src/lib.rs index 36bb38c0..52ca7912 100644 --- a/serde_codegen/src/lib.rs +++ b/serde_codegen/src/lib.rs @@ -2,7 +2,6 @@ #![cfg_attr(feature = "nightly-testing", feature(plugin))] #![cfg_attr(feature = "nightly-testing", allow(too_many_arguments))] #![cfg_attr(feature = "nightly-testing", allow(used_underscore_binding))] -#![cfg_attr(feature = "nightly-testing", allow(useless_let_if_seq))] #![cfg_attr(not(feature = "with-syntex"), feature(rustc_private, plugin))] #![cfg_attr(not(feature = "with-syntex"), plugin(quasi_macros))]