Skip to content

Commit 22aeb26

Browse files
committed
style(arch): sort cfgs
1 parent f315d16 commit 22aeb26

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/arch/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ cfg_select! {
55
mod aarch64;
66
pub(crate) use self::aarch64::*;
77
}
8-
target_arch = "x86_64" => {
9-
mod x86_64;
10-
pub(crate) use self::x86_64::*;
11-
}
128
target_arch = "riscv64" => {
139
mod riscv64;
1410
pub(crate) use self::riscv64::*;
1511
}
12+
target_arch = "x86_64" => {
13+
mod x86_64;
14+
pub(crate) use self::x86_64::*;
15+
}
1616
}

0 commit comments

Comments
 (0)