Get rid of clippy remainings.

This commit is contained in:
Tomasz Drwięga
2017-12-21 11:18:04 +01:00
parent ab2caee0a3
commit 00883e477a
51 changed files with 0 additions and 212 deletions

View File

@@ -164,7 +164,6 @@ struct QueueSignal {
}
impl QueueSignal {
#[cfg_attr(feature="dev", allow(bool_comparison))]
fn set_sync(&self) {
// Do not signal when we are about to close
if self.deleting.load(AtomicOrdering::Relaxed) {
@@ -179,7 +178,6 @@ impl QueueSignal {
}
}
#[cfg_attr(feature="dev", allow(bool_comparison))]
fn set_async(&self) {
// Do not signal when we are about to close
if self.deleting.load(AtomicOrdering::Relaxed) {