We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3334af commit 7a2379cCopy full SHA for 7a2379c
1 file changed
napi/src/lib.rs
@@ -1,8 +1,6 @@
1
#[cfg(all(
2
feature = "allocator",
3
- not(target_arch = "arm"),
4
- not(target_os = "freebsd"),
5
- not(target_family = "wasm")
+ not(any(target_arch = "arm", target_os = "freebsd", target_family = "wasm"))
6
))]
7
#[global_allocator]
8
static ALLOC: mimalloc_safe::MiMalloc = mimalloc_safe::MiMalloc;
0 commit comments