diff options
| author | Alex Burka <durka42+github@gmail.com> | 2016-05-12 10:40:10 -0400 |
|---|---|---|
| committer | Alex Burka <durka42+github@gmail.com> | 2016-05-12 10:40:10 -0400 |
| commit | df4fe5fbd44d8b4d698397dc8a05db56fbd9ab42 (patch) | |
| tree | ae19f068693cf9ad4bea8a36f6c6b4b9c7c50f9c /src | |
| parent | e88defe71806ad190588e168e513bc1098f7c9fb (diff) | |
| download | rust-df4fe5fbd44d8b4d698397dc8a05db56fbd9ab42.tar.gz rust-df4fe5fbd44d8b4d698397dc8a05db56fbd9ab42.zip | |
update "reason" for fnbox feature gate
It isn't "newly introduced" anymore.
Diffstat (limited to 'src')
| -rw-r--r-- | src/liballoc/boxed.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index 7bdf9eaccc3..20645dc90a8 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -525,14 +525,14 @@ impl<I: ExactSizeIterator + ?Sized> ExactSizeIterator for Box<I> {} /// } /// ``` #[rustc_paren_sugar] -#[unstable(feature = "fnbox", reason = "Newly introduced", issue = "28796")] +#[unstable(feature = "fnbox", reason = "will be deprecated if and when Box<FnOnce> becomes usable", issue = "28796")] pub trait FnBox<A> { type Output; fn call_box(self: Box<Self>, args: A) -> Self::Output; } -#[unstable(feature = "fnbox", reason = "Newly introduced", issue = "28796")] +#[unstable(feature = "fnbox", reason = "will be deprecated if and when Box<FnOnce> becomes usable", issue = "28796")] impl<A, F> FnBox<A> for F where F: FnOnce<A> { type Output = F::Output; @@ -542,7 +542,7 @@ impl<A, F> FnBox<A> for F where F: FnOnce<A> } } -#[unstable(feature = "fnbox", reason = "Newly introduced", issue = "28796")] +#[unstable(feature = "fnbox", reason = "will be deprecated if and when Box<FnOnce> becomes usable", issue = "28796")] impl<'a, A, R> FnOnce<A> for Box<FnBox<A, Output = R> + 'a> { type Output = R; @@ -551,7 +551,7 @@ impl<'a, A, R> FnOnce<A> for Box<FnBox<A, Output = R> + 'a> { } } -#[unstable(feature = "fnbox", reason = "Newly introduced", issue = "28796")] +#[unstable(feature = "fnbox", reason = "will be deprecated if and when Box<FnOnce> becomes usable", issue = "28796")] impl<'a, A, R> FnOnce<A> for Box<FnBox<A, Output = R> + Send + 'a> { type Output = R; |
