From 6c4df555fd879570cec152f7b378995e782dcd4f Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Tue, 5 Sep 2023 14:46:44 -0400 Subject: [PATCH] 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. --- yjit/src/cruby.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yjit/src/cruby.rs b/yjit/src/cruby.rs index 254bdb1896..a8234e744a 100644 --- a/yjit/src/cruby.rs +++ b/yjit/src/cruby.rs @@ -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.