Fix clippy warnings

This commit is contained in:
gwenn
2024-07-21 16:09:21 +02:00
parent d5f040a751
commit dcc226c509
6 changed files with 8 additions and 7 deletions

View File

@@ -21,7 +21,7 @@ pub fn SQLITE_TRANSIENT() -> sqlite3_destructor_type {
Some(unsafe { mem::transmute::<isize, unsafe extern "C" fn(*mut std::ffi::c_void)>(-1_isize) })
}
#[allow(clippy::all)]
#[allow(dead_code, clippy::all)]
mod bindings {
include!(concat!(env!("OUT_DIR"), "/bindgen.rs"));
}