We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 56ebc90 + a9d7538 commit b973845Copy full SHA for b973845
src/lib.rs
@@ -5,15 +5,15 @@
5
//! [pd]: https://rust-lang.github.io/libc/#platform-specific-documentation
6
#![crate_name = "libc"]
7
#![crate_type = "rlib"]
8
-// FIXME: Remove this and redundant_semicolon once renamed lint reaches stable.
9
-#![allow(renamed_and_removed_lints)]
10
#![allow(
11
bad_style,
12
overflowing_literals,
13
improper_ctypes,
14
- unknown_lints,
+ // This lint is renamed but we run CI for old stable rustc so should be here.
15
redundant_semicolon,
16
- redundant_semicolons
+ redundant_semicolons,
+ renamed_and_removed_lints,
+ unknown_lints
17
)]
18
#![cfg_attr(libc_deny_warnings, deny(warnings))]
19
// Attributes needed when building as part of the standard library
0 commit comments