@@ -210,7 +210,6 @@ pub trait PartialEq<Rhs: ?Sized = Self> {
210
210
211
211
/// Derive macro generating an impl of the trait `PartialEq`.
212
212
#[ rustc_builtin_macro]
213
- #[ cfg_attr( bootstrap, rustc_macro_transparency = "semitransparent" ) ]
214
213
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
215
214
#[ allow_internal_unstable( core_intrinsics) ]
216
215
pub macro PartialEq ( $item: item) { /* compiler built-in */ }
@@ -273,7 +272,6 @@ pub trait Eq: PartialEq<Self> {
273
272
274
273
/// Derive macro generating an impl of the trait `Eq`.
275
274
#[ rustc_builtin_macro]
276
- #[ cfg_attr( bootstrap, rustc_macro_transparency = "semitransparent" ) ]
277
275
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
278
276
#[ allow_internal_unstable( core_intrinsics, derive_eq) ]
279
277
pub macro Eq ( $item: item) { /* compiler built-in */ }
@@ -624,7 +622,6 @@ pub trait Ord: Eq + PartialOrd<Self> {
624
622
625
623
/// Derive macro generating an impl of the trait `Ord`.
626
624
#[ rustc_builtin_macro]
627
- #[ cfg_attr( bootstrap, rustc_macro_transparency = "semitransparent" ) ]
628
625
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
629
626
#[ allow_internal_unstable( core_intrinsics) ]
630
627
pub macro Ord ( $item: item) { /* compiler built-in */ }
@@ -873,7 +870,6 @@ pub trait PartialOrd<Rhs: ?Sized = Self>: PartialEq<Rhs> {
873
870
874
871
/// Derive macro generating an impl of the trait `PartialOrd`.
875
872
#[ rustc_builtin_macro]
876
- #[ cfg_attr( bootstrap, rustc_macro_transparency = "semitransparent" ) ]
877
873
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
878
874
#[ allow_internal_unstable( core_intrinsics) ]
879
875
pub macro PartialOrd ( $item: item) { /* compiler built-in */ }
0 commit comments