We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0da5800 commit d76b807Copy full SHA for d76b807
compiler/rustc_builtin_macros/src/format_foreign.rs
@@ -518,8 +518,7 @@ pub mod printf {
518
.and_then(|end| end.at_next_cp())
519
.map(|end| (next.slice_between(end).unwrap(), end));
520
let end = match end {
521
- Some(("32", end)) => end,
522
- Some(("64", end)) => end,
+ Some(("32" | "64", end)) => end,
523
_ => next,
524
};
525
state = Type;
0 commit comments