about summary refs log tree commit diff
path: root/compiler/rustc_builtin_macros/src/lib.rs
diff options
context:
space:
mode:
authorDing Xiang Fei <dingxiangfei2009@protonmail.ch>2024-10-05 17:44:53 +0800
committerDing Xiang Fei <dingxiangfei2009@protonmail.ch>2024-10-24 02:14:09 +0800
commitfd36b3a4a8168fcadecac2317e407bbd0eaeb1d2 (patch)
treef2c48c56f9f5903519cba4f257b8213fedf6f853 /compiler/rustc_builtin_macros/src/lib.rs
parentbe01dabfefd2daa4574b974f571c7852085d60cb (diff)
downloadrust-fd36b3a4a8168fcadecac2317e407bbd0eaeb1d2.tar.gz
rust-fd36b3a4a8168fcadecac2317e407bbd0eaeb1d2.zip
s/SmartPointer/CoerceReferent/g
move derive_smart_pointer into removed set
Diffstat (limited to 'compiler/rustc_builtin_macros/src/lib.rs')
-rw-r--r--compiler/rustc_builtin_macros/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_builtin_macros/src/lib.rs b/compiler/rustc_builtin_macros/src/lib.rs
index 377d7f542cf..9eee92164cf 100644
--- a/compiler/rustc_builtin_macros/src/lib.rs
+++ b/compiler/rustc_builtin_macros/src/lib.rs
@@ -133,7 +133,7 @@ pub fn register_builtin_macros(resolver: &mut dyn ResolverExpand) {
         PartialOrd: partial_ord::expand_deriving_partial_ord,
         RustcDecodable: decodable::expand_deriving_rustc_decodable,
         RustcEncodable: encodable::expand_deriving_rustc_encodable,
-        SmartPointer: smart_ptr::expand_deriving_smart_ptr,
+        CoercePointee: coerce_pointee::expand_deriving_coerce_pointee,
     }
 
     let client = proc_macro::bridge::client::Client::expand1(proc_macro::quote);