std: Add missing stability for core::fmt

The `Arguments::new_v1_formatted` function was accidentally left out when this
module was stabilized.
This commit is contained in:
Alex Crichton 2015-02-12 11:12:45 -08:00
parent cca1cf613b
commit 342948670b

View file

@ -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> {