From 342948670b692fa3e1548a23505a0d4193df4224 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 12 Feb 2015 11:12:45 -0800 Subject: [PATCH] std: Add missing stability for core::fmt The `Arguments::new_v1_formatted` function was accidentally left out when this module was stabilized. --- src/libcore/fmt/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcore/fmt/mod.rs b/src/libcore/fmt/mod.rs index f940300a26945..edb4160f08c11 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> {