File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
compiler/rustc_expand/src Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ use crate::base::ast::MetaItemInner;
35
35
use crate :: errors;
36
36
use crate :: expand:: { self , AstFragment , Invocation } ;
37
37
use crate :: module:: DirOwnership ;
38
+ use crate :: stats:: MacroStat ;
38
39
39
40
// When adding new variants, make sure to
40
41
// adjust the `visit_*` / `flat_map_*` calls in `InvocationCollector`
@@ -1191,7 +1192,7 @@ pub struct ExtCtxt<'a> {
1191
1192
/// not to expand it again.
1192
1193
pub ( super ) expanded_inert_attrs : MarkedAttrs ,
1193
1194
/// `-Zmacro-stats` data.
1194
- pub macro_stats : FxHashMap < ( Symbol , MacroKind ) , crate :: stats :: MacroStat > , // njn: quals
1195
+ pub macro_stats : FxHashMap < ( Symbol , MacroKind ) , MacroStat > ,
1195
1196
}
1196
1197
1197
1198
impl < ' a > ExtCtxt < ' a > {
You can’t perform that action at this time.
0 commit comments