@@ -567,7 +567,7 @@ pub trait Hasher {
567
567
}
568
568
569
569
#[ stable( feature = "indirect_hasher_impl" , since = "1.22.0" ) ]
570
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
570
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
571
571
impl < H : ~const Hasher + ?Sized > const Hasher for & mut H {
572
572
fn finish ( & self ) -> u64 {
573
573
( * * self ) . finish ( )
@@ -776,7 +776,7 @@ impl<H> fmt::Debug for BuildHasherDefault<H> {
776
776
}
777
777
778
778
#[ stable( since = "1.7.0" , feature = "build_hasher" ) ]
779
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
779
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
780
780
impl < H : ~const Default + Hasher > const BuildHasher for BuildHasherDefault < H > {
781
781
type Hasher = H ;
782
782
@@ -819,7 +819,7 @@ mod impls {
819
819
macro_rules! impl_write {
820
820
( $( ( $ty: ident, $meth: ident) , ) * ) => { $(
821
821
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
822
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
822
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
823
823
impl const Hash for $ty {
824
824
#[ inline]
825
825
fn hash<H : ~const Hasher >( & self , state: & mut H ) {
@@ -856,7 +856,7 @@ mod impls {
856
856
}
857
857
858
858
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
859
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
859
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
860
860
impl const Hash for bool {
861
861
#[ inline]
862
862
fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -865,7 +865,7 @@ mod impls {
865
865
}
866
866
867
867
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
868
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
868
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
869
869
impl const Hash for char {
870
870
#[ inline]
871
871
fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -874,7 +874,7 @@ mod impls {
874
874
}
875
875
876
876
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
877
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
877
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
878
878
impl const Hash for str {
879
879
#[ inline]
880
880
fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -883,7 +883,7 @@ mod impls {
883
883
}
884
884
885
885
#[ stable( feature = "never_hash" , since = "1.29.0" ) ]
886
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
886
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
887
887
impl const Hash for ! {
888
888
#[ inline]
889
889
fn hash < H : ~const Hasher > ( & self , _: & mut H ) {
@@ -894,7 +894,7 @@ mod impls {
894
894
macro_rules! impl_hash_tuple {
895
895
( ) => (
896
896
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
897
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
897
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
898
898
impl const Hash for ( ) {
899
899
#[ inline]
900
900
fn hash<H : ~const Hasher >( & self , _state: & mut H ) { }
@@ -905,7 +905,7 @@ mod impls {
905
905
maybe_tuple_doc! {
906
906
$( $name) + @
907
907
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
908
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
908
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
909
909
impl <$( $name: ~const Hash ) ,+> const Hash for ( $( $name, ) +) where last_type!( $( $name, ) +) : ?Sized {
910
910
#[ allow( non_snake_case) ]
911
911
#[ inline]
@@ -952,7 +952,7 @@ mod impls {
952
952
impl_hash_tuple ! { T B C D E F G H I J K L }
953
953
954
954
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
955
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
955
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
956
956
impl < T : ~const Hash > const Hash for [ T ] {
957
957
#[ inline]
958
958
fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -962,7 +962,7 @@ mod impls {
962
962
}
963
963
964
964
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
965
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
965
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
966
966
impl < T : ?Sized + ~const Hash > const Hash for & T {
967
967
#[ inline]
968
968
fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -971,7 +971,7 @@ mod impls {
971
971
}
972
972
973
973
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
974
- #[ rustc_const_unstable( feature = "const_hash" , issue = "none " ) ]
974
+ #[ rustc_const_unstable( feature = "const_hash" , issue = "104061 " ) ]
975
975
impl < T : ?Sized + ~const Hash > const Hash for & mut T {
976
976
#[ inline]
977
977
fn hash < H : Hasher > ( & self , state : & mut H ) {
0 commit comments