NFC: Don't treat wasm32 differently w.r.t. dead-code warnings.

This commit is contained in:
Brian Smith 2023-10-14 16:55:50 -07:00
parent 1c476cd20c
commit 65aa65d49a

View File

@ -23,7 +23,6 @@ impl KeyPair {
pub struct Seed { pub struct Seed {
bytes: [u8; SEED_MAX_BYTES], bytes: [u8; SEED_MAX_BYTES],
curve: &'static Curve, curve: &'static Curve,
#[cfg_attr(target_arch = "wasm32", allow(dead_code))]
pub(crate) cpu_features: cpu::Features, pub(crate) cpu_features: cpu::Features,
} }