From 216f840fad4c76051552766e41103e9e21678699 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 21 Jun 2024 22:13:34 +0900 Subject: [PATCH] Apply clippy::as_underscore lint --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 3244909f..9175fd4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,7 @@ unsafe_op_in_unsafe_fn = "warn" all = "warn" # Downgrade deny-by-default lints pedantic = "warn" as_ptr_cast_mut = "warn" +as_underscore = "warn" default_union_representation = "warn" inline_asm_x86_att_syntax = "warn" trailing_empty_array = "warn"