diff options
| author | Fuwn <[email protected]> | 2023-09-26 18:03:06 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-26 18:03:06 +0000 |
| commit | b7cb37ced43c7f2ec2da4ce0d195b935302099d7 (patch) | |
| tree | 87fb5d2513963c144a1b602d94ad8db37d08cf0f /src/router.rs | |
| parent | deps(pretty_env_logger): 0.4.0 -> 0.5.0 (diff) | |
| download | windmark-b7cb37ced43c7f2ec2da4ce0d195b935302099d7.tar.xz windmark-b7cb37ced43c7f2ec2da4ce0d195b935302099d7.zip | |
fix(clippy): lints
Diffstat (limited to 'src/router.rs')
| -rw-r--r-- | src/router.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/router.rs b/src/router.rs index 05a9623..0c69d2e 100644 --- a/src/router.rs +++ b/src/router.rs @@ -421,7 +421,7 @@ impl Router { } for (i, partial_footer) in { - #[allow(clippy::needless_borrow)] + #[allow(clippy::needless_borrow, clippy::explicit_auto_deref)] (&mut *self.footers.lock().unwrap()).iter_mut().enumerate() } { footer.push_str(&format!( |