about summary refs log tree commit diff
path: root/compiler/rustc_metadata
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-08-09 23:27:55 +0000
committerbors <bors@rust-lang.org>2025-08-09 23:27:55 +0000
commit41ede7bd9bfbc9dc1e46c5c7de3b26524e5c61f0 (patch)
treea651adb8679dac8d84d44010df89c85ad15f5169 /compiler/rustc_metadata
parentca77504943887037504c7fc0b9bf06dab3910373 (diff)
parentad1113f87ef828b300ebb8fca397efd358580da3 (diff)
downloadrust-41ede7bd9bfbc9dc1e46c5c7de3b26524e5c61f0.tar.gz
rust-41ede7bd9bfbc9dc1e46c5c7de3b26524e5c61f0.zip
Auto merge of #145146 - fee1-dead-contrib:push-zmqrkurlzrxy, r=nnethercote
remove `P`

Previous work: rust-lang/rust#141603
MCP: https://github.com/rust-lang/compiler-team/issues/878

cc `@nnethercote`
Diffstat (limited to 'compiler/rustc_metadata')
-rw-r--r--compiler/rustc_metadata/src/rmeta/decoder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_metadata/src/rmeta/decoder.rs b/compiler/rustc_metadata/src/rmeta/decoder.rs
index 00c97a2f738..548c56a97bc 100644
--- a/compiler/rustc_metadata/src/rmeta/decoder.rs
+++ b/compiler/rustc_metadata/src/rmeta/decoder.rs
@@ -1530,7 +1530,7 @@ impl<'a> CrateMetadataRef<'a> {
                 let macro_rules = self.root.tables.is_macro_rules.get(self, id);
                 let body =
                     self.root.tables.macro_definition.get(self, id).unwrap().decode((self, sess));
-                ast::MacroDef { macro_rules, body: ast::ptr::P(body) }
+                ast::MacroDef { macro_rules, body: Box::new(body) }
             }
             _ => bug!(),
         }