Skip to content

Commit 99bc62a

Browse files
committed
Patch lints within our CI.
1 parent d4a7f22 commit 99bc62a

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

src/binary16/arch/x86.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![cfg(has_x86_intrinsics)]
22
#![allow(unused_imports)]
33
// NOTE: We feature gate this so it will never happen.
4-
#![allow(clippy::incompatible_msrv)]
4+
#![allow(unknown_lints, clippy::incompatible_msrv)]
55

66
#[cfg(target_arch = "x86")]
77
use core::arch::x86::_mm_cvtps_ph;

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@
6060
//! [`std`]: https://doc.rust-lang.org/std/
6161
//! [`binary16`]: https://en.wikipedia.org/wiki/Half-precision_floating-point_format
6262
//! [`bfloat16`]: https://en.wikipedia.org/wiki/Bfloat16_floating-point_format
63-
#![allow(unknown_lints)]
6463
#![allow(clippy::verbose_bit_mask, clippy::cast_lossless, unexpected_cfgs)]
6564
#![cfg_attr(not(feature = "std"), no_std)]
6665
#![doc(html_root_url = "https://docs.rs/float16/0.1.3")]

0 commit comments

Comments
 (0)