sqlite3: Make Clippy happy

This commit is contained in:
Pekka Enberg
2025-06-16 11:07:39 +03:00
parent 5b47c9932d
commit 5c35810f78

View File

@@ -65,6 +65,7 @@ impl sqlite3 {
e_open_state: SQLITE_STATE_OPEN,
p_err: std::ptr::null_mut(),
};
#[allow(clippy::arc_with_non_send_sync)]
let inner = Arc::new(Mutex::new(inner));
Self { inner }
}