about summary refs log tree commit diff
path: root/src/libstd/collections
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2018-05-30 20:46:59 +0200
committerSimon Sapin <simon.sapin@exyr.org>2018-06-11 13:47:27 -0700
commit8c30c5168694b8ee740dade3a0145eef8aba66c6 (patch)
treee097254988d37c738a9310b9590e1ac39615d383 /src/libstd/collections
parent3373204ac49ebdb7194020ea9c556ce87910f7b7 (diff)
downloadrust-8c30c5168694b8ee740dade3a0145eef8aba66c6.tar.gz
rust-8c30c5168694b8ee740dade3a0145eef8aba66c6.zip
Remove deprecated heap modules
The heap.rs file was already unused.
Diffstat (limited to 'src/libstd/collections')
-rw-r--r--src/libstd/collections/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/mod.rs b/src/libstd/collections/mod.rs
index d8e79b97970..42113414183 100644
--- a/src/libstd/collections/mod.rs
+++ b/src/libstd/collections/mod.rs
@@ -438,7 +438,7 @@ pub use self::hash_map::HashMap;
 pub use self::hash_set::HashSet;
 
 #[unstable(feature = "try_reserve", reason = "new API", issue="48043")]
-pub use heap::CollectionAllocErr;
+pub use alloc::CollectionAllocErr;
 
 mod hash;