From badac4176c8422fce7fa818bcde23e01d23c09ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Mon, 25 Dec 2023 23:32:00 +0100 Subject: [PATCH] chore: Stop allowing previously buggy lint `clippy::extra_unused_type_parameters` The corresponding Clippy issue was fixed long ago. --- core/src/lib.rs | 2 -- render/wgpu/src/lib.rs | 2 -- 2 files changed, 4 deletions(-) diff --git a/core/src/lib.rs b/core/src/lib.rs index 491086d7b4ab5..fc43e80845b66 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -1,5 +1,3 @@ -// This is a new lint with false positives, see https://github.com/rust-lang/rust-clippy/issues/10318 -#![allow(clippy::extra_unused_type_parameters)] // This lint is helpful, but right now we have too many instances of it. // TODO: Remove this once all instances are fixed. #![allow(clippy::needless_pass_by_ref_mut)] diff --git a/render/wgpu/src/lib.rs b/render/wgpu/src/lib.rs index 03d476041d3b3..4af2baf2f9464 100644 --- a/render/wgpu/src/lib.rs +++ b/render/wgpu/src/lib.rs @@ -1,5 +1,3 @@ -// This is a new lint with false positives, see https://github.com/rust-lang/rust-clippy/issues/10318 -#![allow(clippy::extra_unused_type_parameters)] // Remove this when we decide on how to handle multithreaded rendering (especially on wasm) #![allow(clippy::arc_with_non_send_sync)] // This lint is helpful, but right now we have too many instances of it.