You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Rust PR https://github.com/rust-lang/rust/issues/99012 limited format string width and precision to 16 bits, causing panics when dynamic padding exceeds `u16::MAX`.
702
-
// This fixes exessively large width that exceeds `u16::MAX` by directly printing exceeded width.
703
-
let pre_width = width.saturating_sub(u16::MAXasusize);
0 commit comments