Skip to content

Commit bf23485

Browse files
destructured macros
1 parent 87a535e commit bf23485

File tree

4 files changed

+247
-163
lines changed

4 files changed

+247
-163
lines changed

library/core/src/fmt/int_format.rs

Lines changed: 0 additions & 24 deletions
This file was deleted.

library/core/src/fmt/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ use crate::{iter, mem, result, str};
1212
mod builders;
1313
#[cfg(not(no_fp_fmt_parse))]
1414
mod float;
15-
mod int_format;
1615
#[cfg(no_fp_fmt_parse)]
1716
mod nofloat;
1817
mod num;
18+
mod num_buffer;
1919
mod rt;
2020

2121
#[stable(feature = "fmt_flags_align", since = "1.28.0")]
@@ -48,7 +48,7 @@ impl From<rt::Alignment> for Option<Alignment> {
4848
}
4949

5050
#[unstable(feature = "int_format_into", issue = "138215")]
51-
pub use int_format::NumBuffer;
51+
pub use num_buffer::NumBuffer;
5252

5353
#[stable(feature = "debug_builders", since = "1.2.0")]
5454
pub use self::builders::{DebugList, DebugMap, DebugSet, DebugStruct, DebugTuple};

0 commit comments

Comments
 (0)