about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-05-30 21:15:40 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-06-11 13:47:28 -0700
commit11f992c9584f05f56664627ac1ec42e4cd1f0e3e (patch)
treea1da71efd729aa1a9c93ef30330c01df19a552fc /src/liballoc
parent8c30c5168694b8ee740dade3a0145eef8aba66c6 (diff)
downloadrust-11f992c9584f05f56664627ac1ec42e4cd1f0e3e.tar.gz
rust-11f992c9584f05f56664627ac1ec42e4cd1f0e3e.zip
Remove the deprecated Heap type/const
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/alloc.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/liballoc/alloc.rs b/src/liballoc/alloc.rs
index 8c2dda77226..710da9a475b 100644
--- a/src/liballoc/alloc.rs
+++ b/src/liballoc/alloc.rs
@@ -41,15 +41,6 @@ extern "Rust" {
 pub struct Global;
 
 #[unstable(feature = "allocator_api", issue = "32838")]
-#[rustc_deprecated(since = "1.27.0", reason = "type renamed to `Global`")]
-pub type Heap = Global;
-
-#[unstable(feature = "allocator_api", issue = "32838")]
-#[rustc_deprecated(since = "1.27.0", reason = "type renamed to `Global`")]
-#[allow(non_upper_case_globals)]
-pub const Heap: Global = Global;
-
-#[unstable(feature = "allocator_api", issue = "32838")]
 #[inline]
 pub unsafe fn alloc(layout: Layout) -> *mut u8 {
     __rust_alloc(layout.size(), layout.align())