Skip to content

Commit cde6279

Browse files
committed
Auto merge of rust-lang#131284 - dingxiangfei2009:rename-smart-ptr-to-coerce-referent, r=compiler-errors
Rename macro `SmartPointer` to `CoercePointee` As per resolution rust-lang#129104 we will rename the macro to better reflect the technical specification of the feature and clarify the communication. - `SmartPointer` is renamed to `CoerceReferent` - `#[pointee]` attribute is renamed to `#[referent]` - `#![feature(derive_smart_pointer)]` gate is renamed to `#![feature(derive_coerce_referent)]`. - Any mention of `SmartPointer` in the file names are renamed accordingly. r? `@compiler-errors` cc `@nikomatsakis` `@Darksonn`
2 parents c667683 + 1bb8bde commit cde6279

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

core/src/marker.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -1063,9 +1063,10 @@ pub trait FnPtr: Copy + Clone {
10631063
}
10641064

10651065
/// Derive macro generating impls of traits related to smart pointers.
1066-
#[rustc_builtin_macro(SmartPointer, attributes(pointee))]
1066+
#[rustc_builtin_macro(CoercePointee, attributes(pointee))]
10671067
#[allow_internal_unstable(dispatch_from_dyn, coerce_unsized, unsize)]
1068-
#[unstable(feature = "derive_smart_pointer", issue = "123430")]
1069-
pub macro SmartPointer($item:item) {
1068+
#[unstable(feature = "derive_coerce_pointee", issue = "123430")]
1069+
#[cfg(not(bootstrap))]
1070+
pub macro CoercePointee($item:item) {
10701071
/* compiler built-in */
10711072
}

0 commit comments

Comments
 (0)