File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -598,7 +598,7 @@ pub fn is_builtin_attr_name(name: Symbol) -> bool {
598
598
BUILTIN_ATTRIBUTE_MAP . get ( & name) . is_some ( )
599
599
}
600
600
601
- pub static BUILTIN_ATTRIBUTE_MAP : SyncLazy < FxHashMap < Symbol , & ' static BuiltinAttribute > > =
601
+ pub static BUILTIN_ATTRIBUTE_MAP : SyncLazy < FxHashMap < Symbol , & BuiltinAttribute > > =
602
602
SyncLazy :: new ( || {
603
603
let mut map = FxHashMap :: default ( ) ;
604
604
for attr in BUILTIN_ATTRIBUTES . iter ( ) {
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ use std::str;
22
22
23
23
use tracing:: { debug, info} ;
24
24
25
- pub const MACRO_ARGUMENTS : Option < & ' static str > = Some ( "macro arguments" ) ;
25
+ pub const MACRO_ARGUMENTS : Option < & str > = Some ( "macro arguments" ) ;
26
26
27
27
#[ macro_use]
28
28
pub mod parser;
You can’t perform that action at this time.
0 commit comments