From 0ab0c8c697f31bde855b607beaabdd0f3fb8af64 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 10 Mar 2026 17:35:24 +0100 Subject: Style fix --- oryxc/src/arena.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'oryxc/src/arena.rs') diff --git a/oryxc/src/arena.rs b/oryxc/src/arena.rs index cbbf485..cff65a3 100644 --- a/oryxc/src/arena.rs +++ b/oryxc/src/arena.rs @@ -31,10 +31,10 @@ pub struct GlobalArena { impl GlobalArena { pub fn new(blksz: usize) -> Self { - Self { + return Self { blksz, blocks: Mutex::new(Vec::new()), - } + }; } fn allocate_block(&self, layout: Layout) -> RawBlock { -- cgit v1.2.3