Skip to content

Commit

Permalink
fix for musl
Browse files Browse the repository at this point in the history
  • Loading branch information
omerbenamram committed Aug 3, 2024
1 parent ab54719 commit b12d6e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin/evtx_dump.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ use std::ops::RangeInclusive;
use std::path::{Path, PathBuf};
use std::str::FromStr;

#[cfg(not(target_env = "msvc"))]
#[cfg(all(not(target_env = "msvc"), feature = "fast-alloc"))]
use tikv_jemallocator::Jemalloc;

#[cfg(not(target_env = "msvc"))]
#[cfg(all(not(target_env = "msvc"), feature = "fast-alloc"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;

Expand Down

0 comments on commit b12d6e4

Please sign in to comment.