@@ -1694,8 +1694,8 @@ impl f32 {
16941694 ///
16951695 /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
16961696 #[ must_use = "method returns a new number and does not mutate the original value" ]
1697- #[ unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1698- #[ rustc_const_unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1697+ #[ stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
1698+ #[ rustc_const_stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
16991699 #[ inline]
17001700 pub const fn algebraic_add ( self , rhs : f32 ) -> f32 {
17011701 intrinsics:: fadd_algebraic ( self , rhs)
@@ -1705,8 +1705,8 @@ impl f32 {
17051705 ///
17061706 /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
17071707 #[ must_use = "method returns a new number and does not mutate the original value" ]
1708- #[ unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1709- #[ rustc_const_unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1708+ #[ stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
1709+ #[ rustc_const_stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
17101710 #[ inline]
17111711 pub const fn algebraic_sub ( self , rhs : f32 ) -> f32 {
17121712 intrinsics:: fsub_algebraic ( self , rhs)
@@ -1716,8 +1716,8 @@ impl f32 {
17161716 ///
17171717 /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
17181718 #[ must_use = "method returns a new number and does not mutate the original value" ]
1719- #[ unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1720- #[ rustc_const_unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1719+ #[ stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
1720+ #[ rustc_const_stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
17211721 #[ inline]
17221722 pub const fn algebraic_mul ( self , rhs : f32 ) -> f32 {
17231723 intrinsics:: fmul_algebraic ( self , rhs)
@@ -1727,8 +1727,8 @@ impl f32 {
17271727 ///
17281728 /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
17291729 #[ must_use = "method returns a new number and does not mutate the original value" ]
1730- #[ unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1731- #[ rustc_const_unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1730+ #[ stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
1731+ #[ rustc_const_stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
17321732 #[ inline]
17331733 pub const fn algebraic_div ( self , rhs : f32 ) -> f32 {
17341734 intrinsics:: fdiv_algebraic ( self , rhs)
@@ -1738,8 +1738,8 @@ impl f32 {
17381738 ///
17391739 /// See [algebraic operators](primitive@f32#algebraic-operators) for more info.
17401740 #[ must_use = "method returns a new number and does not mutate the original value" ]
1741- #[ unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1742- #[ rustc_const_unstable ( feature = "float_algebraic" , issue = "136469 " ) ]
1741+ #[ stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
1742+ #[ rustc_const_stable ( feature = "float_algebraic" , since = "CURRENT_RUSTC_VERSION " ) ]
17431743 #[ inline]
17441744 pub const fn algebraic_rem ( self , rhs : f32 ) -> f32 {
17451745 intrinsics:: frem_algebraic ( self , rhs)
0 commit comments