fix some more pedantic clippy lints

Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
strawberry 2024-03-23 14:38:15 -04:00
parent 64c5cd21a0
commit 43053374d7
22 changed files with 136 additions and 126 deletions

View file

@ -38,7 +38,7 @@ impl<T> Drop for NonAliasingBox<T> {
// this was done.
#[allow(clippy::undocumented_unsafe_blocks)]
unsafe {
let _ = Box::from_raw(self.0);
_ = Box::from_raw(self.0);
};
}
}