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 {