about summary refs log tree commit diff
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-17 15:41:30 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-17 15:41:30 +0530
commitab51363da53b017883885f25277d059cdc75240b (patch)
treeead1e4fb583d6d36c1cca5f248f64d31f16c683b
parente4e4afa92d5c9c5e1ff923c30f72cb7f0832f8ac (diff)
parent342948670b692fa3e1548a23505a0d4193df4224 (diff)
downloadrust-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.rs1
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> {