Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 7b9f17f

Browse files
committed
Reformat libm-analyze
1 parent 7d73ae1 commit 7b9f17f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/libm-analyze/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,8 +286,7 @@ fn valid_ty(t: &syn::Type) -> bool {
286286
.ident
287287
.to_string();
288288
match s.as_str() {
289-
| "i8" | "i16" | "i32" | "i64" | "isize"
290-
| "u8" | "u16" | "u32" | "u64" | "usize"
289+
"i8" | "i16" | "i32" | "i64" | "isize" | "u8" | "u16" | "u32" | "u64" | "usize"
291290
| "f32" | "f64" => true,
292291
_ => false,
293292
}

0 commit comments

Comments
 (0)