diff options
| author | onestacked <chrisi.schrefl@gmail.com> | 2022-11-06 18:01:44 +0100 |
|---|---|---|
| committer | onestacked <chrisi.schrefl@gmail.com> | 2022-11-06 18:01:44 +0100 |
| commit | dc1f1a8e970f65cbc8d5dc7fbdd466c06c8082e9 (patch) | |
| tree | e35c8708041e0e70cd56dbb7138fdc958c8fdc78 /library/std/src | |
| parent | 5f9899b289c726518faab975ae2f612462ba888b (diff) | |
| download | rust-dc1f1a8e970f65cbc8d5dc7fbdd466c06c8082e9.tar.gz rust-dc1f1a8e970f65cbc8d5dc7fbdd466c06c8082e9.zip | |
Added `const_hash` tracking issue id
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/collections/hash/map.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/src/collections/hash/map.rs b/library/std/src/collections/hash/map.rs index 1963c24b6e9..df490358827 100644 --- a/library/std/src/collections/hash/map.rs +++ b/library/std/src/collections/hash/map.rs @@ -3161,7 +3161,7 @@ impl DefaultHasher { #[stable(feature = "hashmap_default_hasher", since = "1.13.0")] #[inline] #[allow(deprecated)] - #[rustc_const_unstable(feature = "const_hash", issue = "none")] + #[rustc_const_unstable(feature = "const_hash", issue = "104061")] #[must_use] pub const fn new() -> DefaultHasher { DefaultHasher(SipHasher13::new_with_keys(0, 0)) @@ -3169,7 +3169,7 @@ impl DefaultHasher { } #[stable(feature = "hashmap_default_hasher", since = "1.13.0")] -#[rustc_const_unstable(feature = "const_hash", issue = "none")] +#[rustc_const_unstable(feature = "const_hash", issue = "104061")] impl const Default for DefaultHasher { /// Creates a new `DefaultHasher` using [`new`]. /// See its documentation for more. @@ -3182,7 +3182,7 @@ impl const Default for DefaultHasher { } #[stable(feature = "hashmap_default_hasher", since = "1.13.0")] -#[rustc_const_unstable(feature = "const_hash", issue = "none")] +#[rustc_const_unstable(feature = "const_hash", issue = "104061")] impl const Hasher for DefaultHasher { // The underlying `SipHasher13` doesn't override the other // `write_*` methods, so it's ok not to forward them here. |
