Skip to content

Commit 5917ea6

Browse files
committed
[cc] target: remove invalid dead-code markers
1 parent 7c19c16 commit 5917ea6

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

cc/target.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ use std::fmt;
1616

1717
/// Target CPU architecture
1818
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
19-
#[allow(dead_code)] // Variants used via cfg-based detection and tests
2019
pub enum Arch {
2120
X86_64,
2221
Aarch64,
@@ -33,7 +32,6 @@ impl fmt::Display for Arch {
3332

3433
/// Target operating system
3534
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
36-
#[allow(dead_code)] // Variants used via cfg-based detection and tests
3735
pub enum Os {
3836
Linux,
3937
MacOS,

0 commit comments

Comments
 (0)