From 54085ea8257a4c576150dcc926aa598da5160c73 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Sat, 24 Jul 2021 20:35:13 +0200 Subject: [PATCH] Resolve unused '#[allow(clippy::option_map_unit_fn)]' error supressions --- client/examples/chat-cli/main.rs | 1 - voxygen/src/main.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/client/examples/chat-cli/main.rs b/client/examples/chat-cli/main.rs index e23f1bb8c5..92aff3c5cb 100644 --- a/client/examples/chat-cli/main.rs +++ b/client/examples/chat-cli/main.rs @@ -1,5 +1,4 @@ #![deny(unsafe_code)] -#![allow(clippy::option_map_unit_fn)] #![deny(clippy::clone_on_ref_ptr)] use common::{clock::Clock, comp}; diff --git a/voxygen/src/main.rs b/voxygen/src/main.rs index c655e738eb..9550a440e6 100644 --- a/voxygen/src/main.rs +++ b/voxygen/src/main.rs @@ -1,5 +1,4 @@ #![deny(unsafe_code)] -#![allow(clippy::option_map_unit_fn)] #![feature(bool_to_option)] #![recursion_limit = "2048"]