diff options
| author | bors <bors@rust-lang.org> | 2016-09-14 08:28:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-14 08:28:05 -0700 |
| commit | 5a5736db916ac30ca67945bbf0aee41ced1fcf05 (patch) | |
| tree | d681ded3fcaea851b72f01b8e1d0b08bba9597bf /src/librustc_data_structures | |
| parent | 97b561a0944141a02a0cebe577c3c69e436abcf4 (diff) | |
| parent | e368cdd2d5fc2ceff4c4745600fda29dba9fd81f (diff) | |
| download | rust-5a5736db916ac30ca67945bbf0aee41ced1fcf05.tar.gz rust-5a5736db916ac30ca67945bbf0aee41ced1fcf05.zip | |
Auto merge of #36472 - GuillaumeGomez:rollup, r=GuillaumeGomez
Rollup of 5 pull requests - Successful merges: #36334, #36335, #36363, #36374, #36467 - Failed merges:
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/fnv.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_data_structures/fnv.rs b/src/librustc_data_structures/fnv.rs index 47f623266f3..ae90c2fac83 100644 --- a/src/librustc_data_structures/fnv.rs +++ b/src/librustc_data_structures/fnv.rs @@ -35,6 +35,7 @@ pub fn FnvHashSet<V: Hash + Eq>() -> FnvHashSet<V> { pub struct FnvHasher(u64); impl Default for FnvHasher { + /// Creates a `FnvHasher`, with a 64-bit hex initial value. #[inline] fn default() -> FnvHasher { FnvHasher(0xcbf29ce484222325) |
