Skip to content
Snippets Groups Projects
Unverified Commit 71b7b92f authored by Yuki Okushi's avatar Yuki Okushi Committed by GitHub
Browse files

Merge pull request #1808 from JohnTitor/allowing-order

Fix ordering of allowed lints
parents 91636398 20fabe6b
No related branches found
No related tags found
No related merge requests found
...@@ -6,14 +6,14 @@ ...@@ -6,14 +6,14 @@
#![crate_name = "libc"] #![crate_name = "libc"]
#![crate_type = "rlib"] #![crate_type = "rlib"]
#![allow( #![allow(
renamed_and_removed_lints, // Keep this order.
unknown_lints, // Keep this order.
bad_style, bad_style,
overflowing_literals, overflowing_literals,
improper_ctypes, improper_ctypes,
// This lint is renamed but we run CI for old stable rustc so should be here. // This lint is renamed but we run CI for old stable rustc so should be here.
redundant_semicolon, redundant_semicolon,
redundant_semicolons, redundant_semicolons
renamed_and_removed_lints,
unknown_lints
)] )]
#![cfg_attr(libc_deny_warnings, deny(warnings))] #![cfg_attr(libc_deny_warnings, deny(warnings))]
// Attributes needed when building as part of the standard library // Attributes needed when building as part of the standard library
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment