mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 06:10:35 +08:00
Merge pull request #577 from gwenn/mutex_atomic
Ignore `mutex_atomic` clippy lint
This commit is contained in:
commit
3b75dd1e31
@ -37,6 +37,7 @@ pub struct InnerConnection {
|
||||
|
||||
impl InnerConnection {
|
||||
#[cfg(not(feature = "hooks"))]
|
||||
#[allow(clippy::mutex_atomic)]
|
||||
pub fn new(db: *mut ffi::sqlite3, owned: bool) -> InnerConnection {
|
||||
InnerConnection {
|
||||
db,
|
||||
@ -46,6 +47,7 @@ impl InnerConnection {
|
||||
}
|
||||
|
||||
#[cfg(feature = "hooks")]
|
||||
#[allow(clippy::mutex_atomic)]
|
||||
pub fn new(db: *mut ffi::sqlite3, owned: bool) -> InnerConnection {
|
||||
InnerConnection {
|
||||
db,
|
||||
@ -123,6 +125,7 @@ impl InnerConnection {
|
||||
}
|
||||
}
|
||||
|
||||
#[allow(clippy::mutex_atomic)]
|
||||
pub fn close(&mut self) -> Result<()> {
|
||||
if self.db.is_null() {
|
||||
return Ok(());
|
||||
|
@ -17,6 +17,7 @@ struct UnlockNotification {
|
||||
}
|
||||
|
||||
#[cfg(feature = "unlock_notify")]
|
||||
#[allow(clippy::mutex_atomic)]
|
||||
impl UnlockNotification {
|
||||
fn new() -> UnlockNotification {
|
||||
UnlockNotification {
|
||||
|
Loading…
Reference in New Issue
Block a user