about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2016-10-31 23:14:27 +0900
committerSeo Sanghyeon <sanxiyn@gmail.com>2016-10-31 23:14:27 +0900
commit07c8a25f42d1dcd8bd2bd22c8804e4bc5b6583a9 (patch)
tree1c25ab282c6959f91a14efe369824add5b07829f /src/libstd
parent4497196ba56e5839bf4ef674851fd06d942c5544 (diff)
downloadrust-07c8a25f42d1dcd8bd2bd22c8804e4bc5b6583a9.tar.gz
rust-07c8a25f42d1dcd8bd2bd22c8804e4bc5b6583a9.zip
Remove unused type aliases
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/table.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libstd/collections/hash/table.rs b/src/libstd/collections/hash/table.rs
index b357bc3552a..73e9f1a5004 100644
--- a/src/libstd/collections/hash/table.rs
+++ b/src/libstd/collections/hash/table.rs
@@ -113,10 +113,6 @@ pub struct FullBucket<K, V, M> {
     table: M,
 }
 
-pub type EmptyBucketImm<'table, K, V> = EmptyBucket<K, V, &'table RawTable<K, V>>;
-pub type FullBucketImm<'table, K, V> = FullBucket<K, V, &'table RawTable<K, V>>;
-
-pub type EmptyBucketMut<'table, K, V> = EmptyBucket<K, V, &'table mut RawTable<K, V>>;
 pub type FullBucketMut<'table, K, V> = FullBucket<K, V, &'table mut RawTable<K, V>>;
 
 pub enum BucketState<K, V, M> {