about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlexis Beingessner <a.beingessner@gmail.com>2017-05-04 14:48:58 -0400
committerAlexis Beingessner <a.beingessner@gmail.com>2017-05-04 23:54:54 -0400
commitc7cffc5f4ef1def337ca2a294c3ca855ee703419 (patch)
tree6d112c6462a626413c82467cd5de05af3ae41d05 /src/libstd
parent4ff583b1161c5c2e08c28a0740f34a526b39a8bc (diff)
downloadrust-c7cffc5f4ef1def337ca2a294c3ca855ee703419.tar.gz
rust-c7cffc5f4ef1def337ca2a294c3ca855ee703419.zip
Deprecate heap::EMPTY in favour of Unique::empty or otherwise.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/table.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/table.rs b/src/libstd/collections/hash/table.rs
index 0a488dfd53a..a15269cc87c 100644
--- a/src/libstd/collections/hash/table.rs
+++ b/src/libstd/collections/hash/table.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use alloc::heap::{EMPTY, allocate, deallocate};
+use alloc::heap::{allocate, deallocate};
 
 use cmp;
 use hash::{BuildHasher, Hash, Hasher};
@@ -33,6 +33,7 @@ use self::BucketState::*;
 type HashUint = usize;
 
 const EMPTY_BUCKET: HashUint = 0;
+const EMPTY: usize = 1;
 
 /// Special `Unique<HashUint>` that uses the lower bit of the pointer
 /// to expose a boolean tag.