about summary refs log tree commit diff
path: root/src/libstd/collections/hash
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-11-21 17:39:15 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2015-12-18 04:12:31 +0300
commit26a2f852beae15235e7d3c4c5751ffe8e9459817 (patch)
tree9d5ede80534b4d6bb061618d9fdbb2f5c2d79f15 /src/libstd/collections/hash
parentf3f27a5c6483d9e2bb3c872a3b05291a6e1d9cb3 (diff)
downloadrust-26a2f852beae15235e7d3c4c5751ffe8e9459817.tar.gz
rust-26a2f852beae15235e7d3c4c5751ffe8e9459817.zip
Fix the fallout
Diffstat (limited to 'src/libstd/collections/hash')
-rw-r--r--src/libstd/collections/hash/table.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/table.rs b/src/libstd/collections/hash/table.rs
index e8796dd10b4..097968cd5a3 100644
--- a/src/libstd/collections/hash/table.rs
+++ b/src/libstd/collections/hash/table.rs
@@ -123,7 +123,7 @@ pub enum BucketState<K, V, M> {
 // A GapThenFull encapsulates the state of two consecutive buckets at once.
 // The first bucket, called the gap, is known to be empty.
 // The second bucket is full.
-struct GapThenFull<K, V, M> {
+pub struct GapThenFull<K, V, M> {
     gap: EmptyBucket<K, V, ()>,
     full: FullBucket<K, V, M>,
 }