From 419eb9b5489b2ac56614510dbbe81efdd042d219 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 25 Feb 2024 22:08:05 -0800 Subject: [PATCH] One issue link is enough --- src/macros.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/macros.rs b/src/macros.rs index 3f48441..b4c0960 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -95,21 +95,21 @@ macro_rules! __internal_clone_trait_object { } } - #[allow(unknown_lints, non_local_definitions)] // false positive: https://github.com/rust-lang/rust/issues/121621 + #[allow(unknown_lints, non_local_definitions)] impl<'clone, $($generics)*> $crate::__private::Clone for $crate::__private::Box where $($bound)* { fn clone(&self) -> Self { $crate::clone_box(&**self) } } - #[allow(unknown_lints, non_local_definitions)] // false positive: https://github.com/rust-lang/rust/issues/121621 + #[allow(unknown_lints, non_local_definitions)] impl<'clone, $($generics)*> $crate::__private::Clone for $crate::__private::Box where $($bound)* { fn clone(&self) -> Self { $crate::clone_box(&**self) } } - #[allow(unknown_lints, non_local_definitions)] // false positive: https://github.com/rust-lang/rust/issues/121621 + #[allow(unknown_lints, non_local_definitions)] impl<'clone, $($generics)*> $crate::__private::Clone for $crate::__private::Box where $($bound)* { fn clone(&self) -> Self { $crate::clone_box(&**self)