From fb50d45bdfb44ac48728b3b5017d60a1c63f2275 Mon Sep 17 00:00:00 2001 From: Austin Schey Date: Sat, 30 Mar 2024 10:49:12 -0500 Subject: [PATCH] remove extra lifetime --- src/hooks/preupdate_hook.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/preupdate_hook.rs b/src/hooks/preupdate_hook.rs index 4f30416..2b7debf 100644 --- a/src/hooks/preupdate_hook.rs +++ b/src/hooks/preupdate_hook.rs @@ -143,9 +143,9 @@ impl InnerConnection { self.preupdate_hook(None::); } - fn preupdate_hook<'c, F>(&'c mut self, hook: Option) + fn preupdate_hook(&mut self, hook: Option) where - F: FnMut(Action, &str, &str, &PreUpdateCase) + Send + 'c, + F: FnMut(Action, &str, &str, &PreUpdateCase) + Send, { unsafe extern "C" fn call_boxed_closure( p_arg: *mut c_void,