From 115679d50d3f96a00cfcae30d522d3a69686ea2f Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Sun, 17 Dec 2023 17:53:47 +0100 Subject: [PATCH] Inline RoomBuffer::id to avoid cloning Arcs all the time It accounts for half the CPU time in release mode --- src/buffers/room.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/buffers/room.rs b/src/buffers/room.rs index 68ede97..b15309f 100644 --- a/src/buffers/room.rs +++ b/src/buffers/room.rs @@ -588,6 +588,7 @@ impl Buffer for RoomBuffer { }) } + #[inline] fn id(&self) -> BufferId { BufferId::Room(self.room_id.clone()) }