From 79bfca3657fe20878b6c67f4792321ec976aacd1 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Thu, 9 Nov 2023 19:47:03 +0100 Subject: [PATCH] Remove unnecessary `Clone` --- crates/eframe/src/native/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eframe/src/native/run.rs b/crates/eframe/src/native/run.rs index 47207f790..13bb0ffbc 100644 --- a/crates/eframe/src/native/run.rs +++ b/crates/eframe/src/native/run.rs @@ -1908,7 +1908,7 @@ mod wgpu_integration { parent_id: ViewportId, } - #[derive(Clone, Default)] + #[derive(Default)] pub struct Viewports(ViewportIdMap); impl std::ops::Deref for Viewports {