about summary refs log tree commit diff
path: root/library/core/src/tuple.rs
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2024-02-05 07:34:48 -0500
committerMark Rousskov <mark.simulacrum@gmail.com>2024-02-08 07:44:34 -0500
commit9a5034a20ed8b055dc615271f9d9cf27f9e494f0 (patch)
tree33978c4d51e3177a8f2023c8ab23e7c671900457 /library/core/src/tuple.rs
parent9784a14859aeffa2a3819566ccc77a28f9ae03be (diff)
downloadrust-9a5034a20ed8b055dc615271f9d9cf27f9e494f0.tar.gz
rust-9a5034a20ed8b055dc615271f9d9cf27f9e494f0.zip
Step all bootstrap cfgs forward
This also takes care of other bootstrap-related changes.
Diffstat (limited to 'library/core/src/tuple.rs')
-rw-r--r--library/core/src/tuple.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/library/core/src/tuple.rs b/library/core/src/tuple.rs
index 47e27bdc735..44fac589d4c 100644
--- a/library/core/src/tuple.rs
+++ b/library/core/src/tuple.rs
@@ -63,14 +63,6 @@ macro_rules! tuple_impls {
 
         maybe_tuple_doc! {
             $($T)+ @
-            #[unstable(feature = "structural_match", issue = "31434")]
-            #[cfg(bootstrap)]
-            impl<$($T),+> crate::marker::StructuralEq for ($($T,)+)
-            {}
-        }
-
-        maybe_tuple_doc! {
-            $($T)+ @
             #[stable(feature = "rust1", since = "1.0.0")]
             impl<$($T: PartialOrd),+> PartialOrd for ($($T,)+)
             where