Skip to content

Commit

Permalink
Fix unknown clippy allow
Browse files Browse the repository at this point in the history
  • Loading branch information
riesentoaster committed Dec 19, 2024
1 parent 6c93faa commit b0e9a88
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions libafl_frida/src/asan/hook_funcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@ impl AsanRuntime {
}

#[expect(non_snake_case)]
#[allow(unknown_lints)] // the compiler is contradicting itself
#[expect(clippy::used_underscore_items)]
#[inline]
pub fn hook__Znwm(
Expand Down Expand Up @@ -796,6 +797,7 @@ impl AsanRuntime {
}

#[expect(non_snake_case)]
#[allow(unknown_lints)] // the compiler is contradicting itself
#[expect(clippy::used_underscore_items)]
#[inline]
pub fn hook__ZnwmSt11align_val_t(
Expand Down

0 comments on commit b0e9a88

Please sign in to comment.