Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit c4fadb5

Browse files
authored
Merge pull request #321 from tgross35/deny-only-in-ci
Don't deny warnings in lib.rs
2 parents e3becce + 59a2ab7 commit c4fadb5

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

libm/src/lib.rs

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
//! libm in pure Rust
2-
#![deny(warnings)]
32
#![no_std]
43
#![cfg_attr(feature = "unstable", allow(internal_features))]
54
#![cfg_attr(feature = "unstable", feature(core_intrinsics))]
6-
#![allow(clippy::unreadable_literal)]
7-
#![allow(clippy::many_single_char_names)]
8-
#![allow(clippy::needless_return)]
9-
#![allow(clippy::int_plus_one)]
5+
#![allow(clippy::assign_op_pattern)]
106
#![allow(clippy::deprecated_cfg_attr)]
11-
#![allow(clippy::mixed_case_hex_literals)]
12-
#![allow(clippy::float_cmp)]
137
#![allow(clippy::eq_op)]
14-
#![allow(clippy::assign_op_pattern)]
8+
#![allow(clippy::float_cmp)]
9+
#![allow(clippy::int_plus_one)]
10+
#![allow(clippy::many_single_char_names)]
11+
#![allow(clippy::mixed_case_hex_literals)]
12+
#![allow(clippy::needless_return)]
13+
#![allow(clippy::unreadable_literal)]
1514

1615
mod libm_helper;
1716
mod math;

0 commit comments

Comments
 (0)