From 1f3d373262e7912d659b115a0e0303d6c53664ca Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Fri, 18 Nov 2022 11:16:42 +0100 Subject: [PATCH] apply rustfmt --- crates/arena/src/lib.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/crates/arena/src/lib.rs b/crates/arena/src/lib.rs index f9ef7b0001..d300b1b0b1 100644 --- a/crates/arena/src/lib.rs +++ b/crates/arena/src/lib.rs @@ -55,16 +55,10 @@ pub struct Arena { } /// `Arena` does not store `Idx` therefore it is `Send` without its bound. -unsafe impl Send for Arena -where - T: Send, -{} +unsafe impl Send for Arena where T: Send {} /// `Arena` does not store `Idx` therefore it is `Sync` without its bound. -unsafe impl Sync for Arena -where - T: Send, -{} +unsafe impl Sync for Arena where T: Send {} impl Default for Arena { fn default() -> Self {