Skip to content

Commit 05ae6fa

Browse files
committed
Resolve renamed_and_removed_lints warning about unknown_clippy_lints
warning: lint `clippy::unknown_clippy_lints` has been renamed to `unknown_lints` --> macro/src/expand.rs:141:17 | 141 | #[allow(clippy::unknown_clippy_lints)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `unknown_lints` | = note: `#[warn(renamed_and_removed_lints)]` on by default
1 parent 6916094 commit 05ae6fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

macro/src/expand.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ fn expand(ffi: Module, doc: Doc, attrs: OtherAttrs, apis: &[Api], types: &Types)
138138
#doc
139139
#attrs
140140
#[deny(improper_ctypes, improper_ctypes_definitions)]
141-
#[allow(clippy::unknown_clippy_lints)]
141+
#[allow(clippy::unknown_lints)]
142142
#[allow(
143143
non_camel_case_types,
144144
non_snake_case,

0 commit comments

Comments
 (0)