@@ -203,7 +203,6 @@ pub trait PartialEq<Rhs: ?Sized = Self> {
203203/// Derive macro generating an impl of the trait `PartialEq`.
204204#[ cfg( not( bootstrap) ) ]
205205#[ rustc_builtin_macro]
206- #[ rustc_macro_transparency = "semitransparent" ]
207206#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
208207#[ allow_internal_unstable( core_intrinsics) ]
209208pub macro PartialEq ( $item: item) { /* compiler built-in */ }
@@ -267,7 +266,6 @@ pub trait Eq: PartialEq<Self> {
267266/// Derive macro generating an impl of the trait `Eq`.
268267#[ cfg( not( bootstrap) ) ]
269268#[ rustc_builtin_macro]
270- #[ rustc_macro_transparency = "semitransparent" ]
271269#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
272270#[ allow_internal_unstable( core_intrinsics, derive_eq) ]
273271pub macro Eq ( $item: item) { /* compiler built-in */ }
@@ -619,7 +617,6 @@ pub trait Ord: Eq + PartialOrd<Self> {
619617/// Derive macro generating an impl of the trait `Ord`.
620618#[ cfg( not( bootstrap) ) ]
621619#[ rustc_builtin_macro]
622- #[ rustc_macro_transparency = "semitransparent" ]
623620#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
624621#[ allow_internal_unstable( core_intrinsics) ]
625622pub macro Ord ( $item: item) { /* compiler built-in */ }
@@ -869,7 +866,6 @@ pub trait PartialOrd<Rhs: ?Sized = Self>: PartialEq<Rhs> {
869866/// Derive macro generating an impl of the trait `PartialOrd`.
870867#[ cfg( not( bootstrap) ) ]
871868#[ rustc_builtin_macro]
872- #[ rustc_macro_transparency = "semitransparent" ]
873869#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
874870#[ allow_internal_unstable( core_intrinsics) ]
875871pub macro PartialOrd ( $item: item) { /* compiler built-in */ }
0 commit comments