From e6994ea3ac81499866f3fd6894de5f7ece611487 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 5 Mar 2023 10:30:28 +0100 Subject: [PATCH] Remove obsolete clippy suppression This type has been extracted to an alias, so it is okay now. --- fish-rust/src/fd_monitor.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/fish-rust/src/fd_monitor.rs b/fish-rust/src/fd_monitor.rs index 032e26afa..30ff14f17 100644 --- a/fish-rust/src/fd_monitor.rs +++ b/fish-rust/src/fd_monitor.rs @@ -120,7 +120,6 @@ fn from(value: u64) -> Self { /// only `src/io.cpp`) is ported to rust enum FdMonitorCallback { None, - #[allow(clippy::type_complexity)] Native(NativeCallback), Ffi(FfiCallback /* fn ptr */, void_ptr /* param */), }