From d71276b477766e23432a4c45079e482fdf6690cf Mon Sep 17 00:00:00 2001 From: John Date: Thu, 16 Jan 2025 20:32:09 -0600 Subject: [PATCH] cl-structures: Update error type in unstable get_many_mut feature for IndexMap --- compiler/cl-structures/src/index_map.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cl-structures/src/index_map.rs b/compiler/cl-structures/src/index_map.rs index e6c90a7..3765a55 100644 --- a/compiler/cl-structures/src/index_map.rs +++ b/compiler/cl-structures/src/index_map.rs @@ -106,7 +106,7 @@ impl IndexMap { pub fn get_many_mut( &mut self, indices: [K; N], - ) -> Result<[&mut V; N], GetManyMutError> { + ) -> Result<[&mut V; N], GetManyMutError> { self.map.get_many_mut(indices.map(|id| id.get())) }