Skip to content

Commit e5170d2

Browse files
committed
fmt
1 parent 4b0008c commit e5170d2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

compiler/rustc_expand/src/mbe/transcribe.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -391,9 +391,7 @@ fn lockstep_iter_size(
391391
let name = MacroRulesNormalizedIdent::new(*name);
392392
match lookup_cur_matched(name, interpolations, repeats) {
393393
Some(matched) => match matched {
394-
MatchedTokenTree(_) | MatchedNonterminal(_) => {
395-
LockstepIterSize::Unconstrained
396-
}
394+
MatchedTokenTree(_) | MatchedNonterminal(_) => LockstepIterSize::Unconstrained,
397395
MatchedSeq(ads) => LockstepIterSize::Constraint(ads.len(), name),
398396
},
399397
_ => LockstepIterSize::Unconstrained,

0 commit comments

Comments
 (0)