Skip to content

Commit f37ee15

Browse files
committed
---
yaml --- r: 271404 b: refs/heads/auto c: c20cd8f h: refs/heads/master
1 parent 413bc26 commit f37ee15

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: 37785608092c995731bc4e90014668b164a8d560
11+
refs/heads/auto: c20cd8fac97fe4d4594d6f78b3adb0e9b171c3bf
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/src/libstd/collections/hash/table.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ impl<K, V, M> FullBucket<K, V, M> where M: Deref<Target=RawTable<K, V>> + DerefM
466466
}
467467
}
468468

469-
impl<'t, K, V, M: Deref<Target=RawTable<K, V>> + 't> FullBucket<K, V, M> {
469+
impl<'t, K, V, M> FullBucket<K, V, M> where M: Deref<Target=RawTable<K, V>> + 't {
470470
/// Exchange a bucket state for immutable references into the table.
471471
/// Because the underlying reference to the table is also consumed,
472472
/// no further changes to the structure of the table are possible;
@@ -480,7 +480,7 @@ impl<'t, K, V, M: Deref<Target=RawTable<K, V>> + 't> FullBucket<K, V, M> {
480480
}
481481
}
482482

483-
impl<'t, K, V, M: Deref<Target=RawTable<K, V>> + DerefMut + 't> FullBucket<K, V, M> {
483+
impl<'t, K, V, M> FullBucket<K, V, M> where M: Deref<Target=RawTable<K, V>> + DerefMut + 't {
484484
/// This works similarly to `into_refs`, exchanging a bucket state
485485
/// for mutable references into the table.
486486
pub fn into_mut_refs(self) -> (&'t mut K, &'t mut V) {
@@ -491,7 +491,7 @@ impl<'t, K, V, M: Deref<Target=RawTable<K, V>> + DerefMut + 't> FullBucket<K, V,
491491
}
492492
}
493493

494-
impl<K, V, M: Deref<Target=RawTable<K, V>>> GapThenFull<K, V, M> {
494+
impl<K, V, M> GapThenFull<K, V, M> where M: Deref<Target=RawTable<K, V>> {
495495
#[inline]
496496
pub fn full(&self) -> &FullBucket<K, V, M> {
497497
&self.full

0 commit comments

Comments
 (0)