diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-02-12 11:12:45 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-02-12 11:12:45 -0800 |
| commit | 342948670b692fa3e1548a23505a0d4193df4224 (patch) | |
| tree | 8f29edde478068ba7a0ab5bbd1ed77db5b24349c | |
| parent | cca1cf613b8e535ab274d6ce5aecadf4708990bf (diff) | |
| download | rust-342948670b692fa3e1548a23505a0d4193df4224.tar.gz rust-342948670b692fa3e1548a23505a0d4193df4224.zip | |
std: Add missing stability for core::fmt
The `Arguments::new_v1_formatted` function was accidentally left out when this module was stabilized.
| -rw-r--r-- | src/libcore/fmt/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs index f940300a269..edb4160f08c 100644 --- a/src/libcore/fmt/mod.rs +++ b/src/libcore/fmt/mod.rs @@ -197,6 +197,7 @@ impl<'a> Arguments<'a> { /// created with `argumentuint`. However, failing to do so doesn't cause /// unsafety, but will ignore invalid . #[doc(hidden)] #[inline] + #[stable(feature = "rust1", since = "1.0.0")] pub fn new_v1_formatted(pieces: &'a [&'a str], args: &'a [ArgumentV1<'a>], fmt: &'a [rt::v1::Argument]) -> Arguments<'a> { |
