From 24e866117cddc10e1cb0911ca315ee1308f1faf6 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Thu, 4 Mar 2021 17:41:22 +0000 Subject: [PATCH] Allow clippy::manual_map We manually expand these to reduce the amount of LLVM IR generated. (#183) --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 8ffb6243e6..af3c3a44e0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,8 @@ clippy::module_name_repetitions, clippy::must_use_candidate, clippy::option_if_let_else, - clippy::redundant_else + clippy::redundant_else, + clippy::manual_map )] #![warn(missing_docs)] #![warn(rust_2018_idioms)]