diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-21 00:04:25 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-12-21 09:27:36 -0800 |
| commit | 1dc5e6312fd13bd30fb93f7138845532fbdfe8cf (patch) | |
| tree | 34749c133b759d1af0f807d34d7f380a3a8b84c0 /src/liballoc/boxed.rs | |
| parent | 6495c27ee6b1aee816dd8eee36c9e60a87ba03c7 (diff) | |
| parent | 92ccc073e1a5a68fada24b5b3cb47b65b5ff1c61 (diff) | |
| download | rust-1dc5e6312fd13bd30fb93f7138845532fbdfe8cf.tar.gz rust-1dc5e6312fd13bd30fb93f7138845532fbdfe8cf.zip | |
rollup merge of #20070: aturon/stab-2-clone
This patch marks `clone` stable, as well as the `Clone` trait, but leaves `clone_from` unstable. The latter will be decided by the beta. The patch also marks most manual implementations of `Clone` as stable, except where the APIs are otherwise deprecated or where there is uncertainty about providing `Clone`. r? @alexcrichton
Diffstat (limited to 'src/liballoc/boxed.rs')
| -rw-r--r-- | src/liballoc/boxed.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index ea7b32ace49..5fd234192c5 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -58,7 +58,7 @@ impl<T> Default for Box<[T]> { fn default() -> Box<[T]> { box [] } } -#[unstable] +#[stable] impl<T: Clone> Clone for Box<T> { /// Returns a copy of the owned box. #[inline] |
