YJIT: Silence Clippy for bindgen generated code

New Clippy lint in 1.72.0 is breaking our build as GitHub has updated
their image. No point hearing about lints from generated code we don't
manually write.
This commit is contained in:
Alan Wu 2023-09-05 14:46:44 -04:00
parent c384ef0799
commit 6c4df555fd

View File

@ -96,7 +96,7 @@ pub type size_t = u64;
pub type RedefinitionFlag = u32;
#[allow(dead_code)]
#[allow(clippy::useless_transmute)]
#[allow(clippy::all)]
mod autogened {
use super::*;
// Textually include output from rust-bindgen as suggested by its user guide.