diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-01 01:13:08 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-03 23:01:33 -0500 |
| commit | 5172b8046ac6e23c6f106df79dd8c887516896b6 (patch) | |
| tree | a0fb81f7f922875312334637380a7d599bf99bb0 /src/liballoc | |
| parent | c6c786671d692d7b13c2e5c68a53001327b4b125 (diff) | |
| download | rust-5172b8046ac6e23c6f106df79dd8c887516896b6.tar.gz rust-5172b8046ac6e23c6f106df79dd8c887516896b6.zip | |
remove `Any[Mut]RefExt` traits in favor of `impl Any`
Diffstat (limited to 'src/liballoc')
| -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 e836b08459b..ca010ac986a 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -12,7 +12,7 @@ #![stable] -use core::any::{Any, AnyRefExt}; +use core::any::Any; use core::clone::Clone; use core::cmp::{PartialEq, PartialOrd, Eq, Ord, Ordering}; use core::default::Default; |
