about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTim Diekmann <tim.diekmann@3dvision.de>2020-02-01 18:40:12 +0100
committerTim Diekmann <tim.diekmann@3dvision.de>2020-02-01 18:40:12 +0100
commit8bbaeb7ff9a830e85106a00c84a1aa262f77a7f3 (patch)
tree3e920a94e64b40e19fa488a25ccf56851cf02fa5
parent6c0b779b7bb23ad1bead914e8023642cc2368406 (diff)
downloadrust-8bbaeb7ff9a830e85106a00c84a1aa262f77a7f3.tar.gz
rust-8bbaeb7ff9a830e85106a00c84a1aa262f77a7f3.zip
Remove `Alloc` in favor of `AllocRef`
`AllocRef` was reexported as `Alloc` in order to not break toolstate in the week before the next stable release. 
-rw-r--r--src/libcore/alloc.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libcore/alloc.rs b/src/libcore/alloc.rs
index 1b7dfafbd70..38df843d258 100644
--- a/src/libcore/alloc.rs
+++ b/src/libcore/alloc.rs
@@ -1227,10 +1227,3 @@ pub unsafe trait AllocRef {
         }
     }
 }
-
-// In order to rename `Alloc` to `AllocRef`, some submoduleshas to be updated as well. The CI fails
-// if either of the submodules fails to compile. The submodules have their own CI depending on a
-// specific Rust version, which don't have `AllocRef` yet. This alias is used to make the submodules
-// compile and pass the CI.
-#[unstable(feature = "allocator_api", issue = "32838")]
-pub use self::AllocRef as Alloc;