Skip to content

Commit 0350280

Browse files
committed
fix warning: allow dead code on aarch64 aswell.
1 parent c1ba1a5 commit 0350280

File tree

1 file changed

+1
-1
lines changed
  • crates/std_detect/src/detect/os/linux

1 file changed

+1
-1
lines changed

crates/std_detect/src/detect/os/linux/auxvec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Parses ELF auxiliary vectors.
2-
#![cfg_attr(not(target_arch = "aarch64"), allow(dead_code))]
2+
#![allow(dead_code)]
33

44
pub(crate) const AT_NULL: usize = 0;
55

0 commit comments

Comments
 (0)