3
0
mirror of https://github.com/isar/rusqlite.git synced 2025-04-03 13:02:58 +08:00

remove extra lifetime

This commit is contained in:
Austin Schey 2024-03-30 10:49:12 -05:00
parent b910eafee5
commit fb50d45bdf

@ -143,9 +143,9 @@ impl InnerConnection {
self.preupdate_hook(None::<fn(Action, &str, &str, &PreUpdateCase)>); self.preupdate_hook(None::<fn(Action, &str, &str, &PreUpdateCase)>);
} }
fn preupdate_hook<'c, F>(&'c mut self, hook: Option<F>) fn preupdate_hook<F>(&mut self, hook: Option<F>)
where where
F: FnMut(Action, &str, &str, &PreUpdateCase) + Send + 'c, F: FnMut(Action, &str, &str, &PreUpdateCase) + Send,
{ {
unsafe extern "C" fn call_boxed_closure<F>( unsafe extern "C" fn call_boxed_closure<F>(
p_arg: *mut c_void, p_arg: *mut c_void,