Skip to content

Commit b973845

Browse files
authored
Merge pull request #1801 from JohnTitor/lint-name
Update comment to clarify
2 parents 56ebc90 + a9d7538 commit b973845

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
//! [pd]: https://rust-lang.github.io/libc/#platform-specific-documentation
66
#![crate_name = "libc"]
77
#![crate_type = "rlib"]
8-
// FIXME: Remove this and redundant_semicolon once renamed lint reaches stable.
9-
#![allow(renamed_and_removed_lints)]
108
#![allow(
119
bad_style,
1210
overflowing_literals,
1311
improper_ctypes,
14-
unknown_lints,
12+
// This lint is renamed but we run CI for old stable rustc so should be here.
1513
redundant_semicolon,
16-
redundant_semicolons
14+
redundant_semicolons,
15+
renamed_and_removed_lints,
16+
unknown_lints
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)