@@ -567,7 +567,7 @@ pub trait Hasher {
567567}
568568
569569#[ 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 " ) ]
571571impl < H : ~const Hasher + ?Sized > const Hasher for & mut H {
572572 fn finish ( & self ) -> u64 {
573573 ( * * self ) . finish ( )
@@ -776,7 +776,7 @@ impl<H> fmt::Debug for BuildHasherDefault<H> {
776776}
777777
778778#[ 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 " ) ]
780780impl < H : ~const Default + Hasher > const BuildHasher for BuildHasherDefault < H > {
781781 type Hasher = H ;
782782
@@ -819,7 +819,7 @@ mod impls {
819819 macro_rules! impl_write {
820820 ( $( ( $ty: ident, $meth: ident) , ) * ) => { $(
821821 #[ 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 " ) ]
823823 impl const Hash for $ty {
824824 #[ inline]
825825 fn hash<H : ~const Hasher >( & self , state: & mut H ) {
@@ -856,7 +856,7 @@ mod impls {
856856 }
857857
858858 #[ 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 " ) ]
860860 impl const Hash for bool {
861861 #[ inline]
862862 fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -865,7 +865,7 @@ mod impls {
865865 }
866866
867867 #[ 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 " ) ]
869869 impl const Hash for char {
870870 #[ inline]
871871 fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -874,7 +874,7 @@ mod impls {
874874 }
875875
876876 #[ 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 " ) ]
878878 impl const Hash for str {
879879 #[ inline]
880880 fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -883,7 +883,7 @@ mod impls {
883883 }
884884
885885 #[ 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 " ) ]
887887 impl const Hash for ! {
888888 #[ inline]
889889 fn hash < H : ~const Hasher > ( & self , _: & mut H ) {
@@ -894,7 +894,7 @@ mod impls {
894894 macro_rules! impl_hash_tuple {
895895 ( ) => (
896896 #[ 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 " ) ]
898898 impl const Hash for ( ) {
899899 #[ inline]
900900 fn hash<H : ~const Hasher >( & self , _state: & mut H ) { }
@@ -905,7 +905,7 @@ mod impls {
905905 maybe_tuple_doc! {
906906 $( $name) + @
907907 #[ 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 " ) ]
909909 impl <$( $name: ~const Hash ) ,+> const Hash for ( $( $name, ) +) where last_type!( $( $name, ) +) : ?Sized {
910910 #[ allow( non_snake_case) ]
911911 #[ inline]
@@ -952,7 +952,7 @@ mod impls {
952952 impl_hash_tuple ! { T B C D E F G H I J K L }
953953
954954 #[ 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 " ) ]
956956 impl < T : ~const Hash > const Hash for [ T ] {
957957 #[ inline]
958958 fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -962,7 +962,7 @@ mod impls {
962962 }
963963
964964 #[ 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 " ) ]
966966 impl < T : ?Sized + ~const Hash > const Hash for & T {
967967 #[ inline]
968968 fn hash < H : ~const Hasher > ( & self , state : & mut H ) {
@@ -971,7 +971,7 @@ mod impls {
971971 }
972972
973973 #[ 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 " ) ]
975975 impl < T : ?Sized + ~const Hash > const Hash for & mut T {
976976 #[ inline]
977977 fn hash < H : Hasher > ( & self , state : & mut H ) {
0 commit comments