We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rustc_expand
1 parent 65863c5 commit 7b613edCopy full SHA for 7b613ed
compiler/rustc_expand/src/proc_macro.rs
@@ -43,9 +43,9 @@ pub struct BangProcMacro {
43
}
44
45
impl base::BangProcMacro for BangProcMacro {
46
- fn expand<'cx>(
+ fn expand(
47
&self,
48
- ecx: &'cx mut ExtCtxt<'_>,
+ ecx: &mut ExtCtxt<'_>,
49
span: Span,
50
input: TokenStream,
51
) -> Result<TokenStream, ErrorGuaranteed> {
@@ -73,9 +73,9 @@ pub struct AttrProcMacro {
73
74
75
impl base::AttrProcMacro for AttrProcMacro {
76
77
78
79
80
annotation: TokenStream,
81
annotated: TokenStream,
0 commit comments