Skip to content

Commit df1098d

Browse files
authored
Rollup merge of #148346 - Alexendoo:cfg-trace-values, r=JonathanBrouwer
Change cfg_trace, cfg_attr_trace symbol values For debugging - I ran into this working on `cfg` stuff in Clippy where I didn't notice the value was wrapped in `<>`, adding `_trace` makes it easier to spot
2 parents f985303 + 2af3dd6 commit df1098d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_span/src/symbol.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,7 @@ symbols! {
625625
cfg_accessible,
626626
cfg_attr,
627627
cfg_attr_multi,
628-
cfg_attr_trace: "<cfg_attr>", // must not be a valid identifier
628+
cfg_attr_trace: "<cfg_attr_trace>", // must not be a valid identifier
629629
cfg_boolean_literals,
630630
cfg_contract_checks,
631631
cfg_doctest,
@@ -646,7 +646,7 @@ symbols! {
646646
cfg_target_has_reliable_f16_f128,
647647
cfg_target_thread_local,
648648
cfg_target_vendor,
649-
cfg_trace: "<cfg>", // must not be a valid identifier
649+
cfg_trace: "<cfg_trace>", // must not be a valid identifier
650650
cfg_ub_checks,
651651
cfg_version,
652652
cfi,

0 commit comments

Comments
 (0)