diff options
| author | Michael Darakananda <pongad@gmail.com> | 2014-03-05 01:19:14 -0500 |
|---|---|---|
| committer | Michael Darakananda <pongad@gmail.com> | 2014-03-08 15:09:00 -0500 |
| commit | 438893b36fe241b37eb76250f7c38ac8832f5706 (patch) | |
| tree | 3cf612ba7c19fcc473a7f4e11ac984224a5c885d /src/libstd/prelude.rs | |
| parent | 96e8c00e95b1980c429c5cfa4aae33e3cc60f3c5 (diff) | |
| download | rust-438893b36fe241b37eb76250f7c38ac8832f5706.tar.gz rust-438893b36fe241b37eb76250f7c38ac8832f5706.zip | |
Removed DeepClone. Issue #12698.
Diffstat (limited to 'src/libstd/prelude.rs')
| -rw-r--r-- | src/libstd/prelude.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/prelude.rs b/src/libstd/prelude.rs index c1cd3a6d79f..b30c78e7962 100644 --- a/src/libstd/prelude.rs +++ b/src/libstd/prelude.rs @@ -38,7 +38,7 @@ pub use mem::drop; pub use ascii::{Ascii, AsciiCast, OwnedAsciiCast, AsciiStr, IntoBytes}; pub use c_str::ToCStr; pub use char::Char; -pub use clone::{Clone, DeepClone}; +pub use clone::Clone; pub use cmp::{Eq, Ord, TotalEq, TotalOrd, Ordering, Less, Equal, Greater, Equiv}; pub use container::{Container, Mutable, Map, MutableMap, Set, MutableSet}; pub use iter::{FromIterator, Extendable}; |
