Skip to content

Commit

Permalink
Simplify #[cfg] to appease clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
koute committed Sep 6, 2023
1 parent 1cc9c7d commit 8dc6b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
#![deny(missing_docs)] // refuse to compile if documentation is missing
#![allow(clippy::needless_lifetimes)]

#[cfg(any(feature = "std"))]
#[cfg(feature = "std")]
#[macro_use]
extern crate std;

Expand Down

0 comments on commit 8dc6b99

Please sign in to comment.