From 7178a79675000e6261425aa84e417294729904e4 Mon Sep 17 00:00:00 2001 From: Ammar Arif Date: Thu, 5 Sep 2024 15:50:41 -0400 Subject: [PATCH] chore: rust fmt --- crates/blockifier/src/lib.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/crates/blockifier/src/lib.rs b/crates/blockifier/src/lib.rs index a78a9c5465..577f2502de 100644 --- a/crates/blockifier/src/lib.rs +++ b/crates/blockifier/src/lib.rs @@ -2,11 +2,7 @@ // length to pointer type ([not necessarily true](https://github.com/rust-lang/rust/issues/65473), // but it is a reasonable assumption for now), this attribute protects against potential overflow // when converting usize to u128. -#![cfg(any( - target_pointer_width = "16", - target_pointer_width = "32", - target_pointer_width = "64", -))] +#![cfg(any(target_pointer_width = "16", target_pointer_width = "32", target_pointer_width = "64",))] #[cfg(feature = "jemalloc")] // Override default allocator.