fix clippy error (#33317)

* fix clippy error

* fix fmt that somehow got merged
This commit is contained in:
Jeff Washington (jwash) 2023-09-19 20:28:55 -07:00 committed by GitHub
parent 58f980a19b
commit 7a8a492d4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ impl<O: BucketOccupied> BucketStorage<O> {
/// delete the backing file on disk
fn delete(&self) {
_ = remove_file(&self.path);
_ = remove_file(&self.path);
}
pub fn max_search(&self) -> u64 {

View File

@ -1,5 +1,5 @@
#![cfg_attr(RUSTC_WITH_SPECIALIZATION, feature(min_specialization))]
#![allow(clippy::integer_arithmetic)]
#![allow(clippy::arithmetic_side_effects)]
pub mod vote_account;
pub mod vote_parser;