Skip to content

Commit f1dd5fb

Browse files
authored
Rollup merge of #142561 - nnethercote:fix-njn-comment, r=chenyukang
Remove an `njn:` comment accidentaly left behind. r? `@chenyukang`
2 parents 1a56184 + 87456e1 commit f1dd5fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

compiler/rustc_expand/src/base.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ use crate::base::ast::MetaItemInner;
3535
use crate::errors;
3636
use crate::expand::{self, AstFragment, Invocation};
3737
use crate::module::DirOwnership;
38+
use crate::stats::MacroStat;
3839

3940
// When adding new variants, make sure to
4041
// adjust the `visit_*` / `flat_map_*` calls in `InvocationCollector`
@@ -1191,7 +1192,7 @@ pub struct ExtCtxt<'a> {
11911192
/// not to expand it again.
11921193
pub(super) expanded_inert_attrs: MarkedAttrs,
11931194
/// `-Zmacro-stats` data.
1194-
pub macro_stats: FxHashMap<(Symbol, MacroKind), crate::stats::MacroStat>, // njn: quals
1195+
pub macro_stats: FxHashMap<(Symbol, MacroKind), MacroStat>,
11951196
}
11961197

11971198
impl<'a> ExtCtxt<'a> {

0 commit comments

Comments
 (0)