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
Родитель c384ef0799
Коммит 6c4df555fd
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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.