Skip to content

Commit 71b7b92

Browse files
authored
Merge pull request #1808 from JohnTitor/allowing-order
Fix ordering of allowed lints
2 parents 9163639 + 20fabe6 commit 71b7b92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
#![crate_name = "libc"]
77
#![crate_type = "rlib"]
88
#![allow(
9+
renamed_and_removed_lints, // Keep this order.
10+
unknown_lints, // Keep this order.
911
bad_style,
1012
overflowing_literals,
1113
improper_ctypes,
1214
// This lint is renamed but we run CI for old stable rustc so should be here.
1315
redundant_semicolon,
14-
redundant_semicolons,
15-
renamed_and_removed_lints,
16-
unknown_lints
16+
redundant_semicolons
1717
)]
1818
#![cfg_attr(libc_deny_warnings, deny(warnings))]
1919
// Attributes needed when building as part of the standard library

0 commit comments

Comments
 (0)