Skip to content

Commit

Permalink
#[allow(clippy::no_effect_underscore_binding)]
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed May 9, 2024
1 parent d65e421 commit 75ca612
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/encryptedfs_fuse3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,13 @@ pub struct EncryptedFsFuse3 {
}

impl EncryptedFsFuse3 {
#[allow(clippy::no_effect_underscore_binding)]
pub async fn new(
data_dir: PathBuf,
tmp_dir: PathBuf,
password_provider: Box<dyn PasswordProvider>,
cipher: Cipher,
direct_io: bool,
_suid_support: bool,
#[allow(clippy::no_effect_underscore_binding)] _suid_support: bool,
) -> FsResult<Self> {
#[cfg(feature = "abi-7-26")]
{
Expand Down

0 comments on commit 75ca612

Please sign in to comment.