Backends: Metal: Remove weak ref (#5122, #5123)
diff --git a/backends/imgui_impl_metal.mm b/backends/imgui_impl_metal.mm
index 358103f..d2eb465 100644
--- a/backends/imgui_impl_metal.mm
+++ b/backends/imgui_impl_metal.mm
@@ -583,7 +583,7 @@
         indexBufferOffset += (size_t)cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx);
     }
 
-    __weak id weakSelf = self;
+    id weakSelf = self;
     [commandBuffer addCompletedHandler:^(id<MTLCommandBuffer>)
     {
         dispatch_async(dispatch_get_main_queue(), ^{