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.
2 parents 3748c26 + d76b807 commit f7c06eaCopy full SHA for f7c06ea
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