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,