Skip to content

Commit

Permalink
YJIT: Silence Clippy for bindgen generated code
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
XrXr committed Sep 5, 2023
1 parent c384ef0 commit 6c4df55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yjit/src/cruby.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6c4df55

Please sign in to comment.