Skip to content

Commit

Permalink
Remove unnecessary all, which makes clippy weepy
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Sep 4, 2024
1 parent 80e2ca1 commit eb0ae5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/uv-production-memory-allocator/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! The only purpose of this crate is to pull in `mimalloc` on windows and
//! `tikv-jemallocator` on most other platforms.
#[cfg(all(target_os = "windows"))]
#[cfg(target_os = "windows")]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

Expand Down

0 comments on commit eb0ae5f

Please sign in to comment.