From 56ad7fe0e5035895cb396e1bcc7e45da015466aa Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Fri, 21 Apr 2023 20:56:15 +0200 Subject: [PATCH] Silence some more clippy lints They are at odds with some direct translations. --- fish-rust/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fish-rust/src/lib.rs b/fish-rust/src/lib.rs index bd0c00d13..74a68d00a 100644 --- a/fish-rust/src/lib.rs +++ b/fish-rust/src/lib.rs @@ -7,6 +7,8 @@ #![allow(clippy::uninlined_format_args)] #![allow(clippy::derivable_impls)] #![allow(clippy::option_map_unit_fn)] +#![allow(clippy::ptr_arg)] +#![allow(clippy::field_reassign_with_default)] #[macro_use] mod common;