From ca067ef77a0b47bf6f708c56a4ced141f270da1e Mon Sep 17 00:00:00 2001 From: Jeremy Leibs Date: Wed, 7 Feb 2024 16:25:56 +0100 Subject: [PATCH] Add missing inline for EntityPath Index --- crates/re_log_types/src/path/entity_path.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/re_log_types/src/path/entity_path.rs b/crates/re_log_types/src/path/entity_path.rs index 716b7222205e..5ce8c0354049 100644 --- a/crates/re_log_types/src/path/entity_path.rs +++ b/crates/re_log_types/src/path/entity_path.rs @@ -310,6 +310,7 @@ where { type Output = Idx::Output; + #[inline] fn index(&self, index: Idx) -> &Self::Output { &self.parts[index] }