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.
This commit is contained in:
Manish Goregaokar 2015-02-17 15:41:30 +05:30
commit ab51363da5

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