diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-17 15:41:30 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-17 15:41:30 +0530 |
| commit | ab51363da53b017883885f25277d059cdc75240b (patch) | |
| tree | ead1e4fb583d6d36c1cca5f248f64d31f16c683b | |
| parent | e4e4afa92d5c9c5e1ff923c30f72cb7f0832f8ac (diff) | |
| parent | 342948670b692fa3e1548a23505a0d4193df4224 (diff) | |
| download | rust-ab51363da53b017883885f25277d059cdc75240b.tar.gz rust-ab51363da53b017883885f25277d059cdc75240b.zip | |
Rollup merge of #22232 - alexcrichton:missing-fmt-stability, r=aturon
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> { |
