about summary refs log tree commit diff
path: root/src/liballoc/boxed.rs
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2014-12-20 00:35:06 -0800
committerAaron Turon <aturon@mozilla.com>2014-12-20 00:37:44 -0800
commit92ccc073e1a5a68fada24b5b3cb47b65b5ff1c61 (patch)
tree4992a05d77d7c24af27d83d6a47c417db45a28f7 /src/liballoc/boxed.rs
parent8443b09e361b96d1f9b7f45a65ed0d31c0e86e70 (diff)
downloadrust-92ccc073e1a5a68fada24b5b3cb47b65b5ff1c61.tar.gz
rust-92ccc073e1a5a68fada24b5b3cb47b65b5ff1c61.zip
Stabilize 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`.
Diffstat (limited to 'src/liballoc/boxed.rs')
-rw-r--r--src/liballoc/boxed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 879a8cc6951..f0c96196b78 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -57,7 +57,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]