Skip to content

Commit 62a32e7

Browse files
committed
Formatting
1 parent ab743f2 commit 62a32e7

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
fn main() {
2-
let target = std::env::var("TARGET").expect("TARGET environment variable not defined");
2+
let target = std::env::var("TARGET")
3+
.expect("TARGET environment variable not defined");
34
if target.contains("neon") {
45
println!("cargo:rustc-cfg=libcore_neon");
56
}

src/api.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ macro_rules! impl_u {
158158
);
159159
impl_cmp_partial_ord!([$elem_ty; $elem_n]: $tuple_id | $test_tt);
160160
impl_cmp_ord!([$elem_ty; $elem_n]: $tuple_id | $test_tt | (0, 1));
161-
impl_bitmask!($tuple_id | $ibitmask_ty | ($ielem_ty::max_value(), 0) | $test_tt);
161+
impl_bitmask!($tuple_id | $ibitmask_ty | ($ielem_ty::max_value(), 0) |
162+
$test_tt);
162163

163164
test_select!($elem_ty, $mask_ty, $tuple_id, (1, 2) | $test_tt);
164165
test_cmp_partial_ord_int!([$elem_ty; $elem_n]: $tuple_id | $test_tt);

src/api/bitmask.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ macro_rules! impl_bitmask {
1414
}
1515
}
1616

17-
test_if!{
17+
test_if! {
1818
$test_tt:
1919
paste::item! {
2020
#[cfg(not(any(
@@ -78,5 +78,5 @@ macro_rules! impl_bitmask {
7878
}
7979
}
8080
}
81-
}
81+
};
8282
}

src/v64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
//! 64-bit wide vector types
2+
#![rustfmt::skip]
23

34
use super::*;
45

0 commit comments

Comments
 (0)