Skip to content

Commit 7bcb684

Browse files
committed
chore: Update clippy attribute in load_gen module
The cargo-clippy feature is deprecated, and if we update it with the replacement `clippy` feature, clippy starts yelling at us about just dropping the `cfg` altogether. Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
1 parent 1ee5dfa commit 7bcb684

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/loader_gen/x86_64/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! Bindgen autogenerated structs for `x86_64` boot parameters.
1111
1212
#![cfg(any(target_arch = "x86", target_arch = "x86_64"))]
13-
#![cfg_attr(feature = "cargo-clippy", allow(clippy::all))]
13+
#![allow(clippy::all)]
1414
#![allow(dead_code)]
1515
#![allow(missing_docs)]
1616
#![allow(non_camel_case_types)]

0 commit comments

Comments
 (0)