Skip to content

Commit

Permalink
remove allow attrs that were needed due to a previous clippy bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Tehforsch committed Feb 25, 2024
1 parent 9546634 commit 6f27a78
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -396,8 +396,6 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(incomplete_features)]
#![feature(generic_const_exprs, adt_const_params)]
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/12133
#![allow(clippy::unconditional_recursion)]

// This ensures we don't have to differentiate between
// imports via `crate::` and `diman::` in the proc macro.
Expand Down
2 changes: 0 additions & 2 deletions tests/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
#![allow(incomplete_features)]
#![feature(generic_const_exprs, adt_const_params)]
#![feature(const_fn_floating_point_arithmetic)]
// clippy bug: https://github.com/rust-lang/rust-clippy/issues/12133
#![allow(clippy::unconditional_recursion)]

pub mod example_system;
pub mod utils;
Expand Down

0 comments on commit 6f27a78

Please sign in to comment.