Skip to content

Commit 7d2e763

Browse files
committed
Added tracking issue
1 parent c623832 commit 7d2e763

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/std/src/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ impl f32 {
935935
/// ```
936936
#[rustc_allow_incoherent_impl]
937937
#[must_use = "method returns a new number and does not mutate the original value"]
938-
#[unstable(feature = "float_gamma", issue = "none")]
938+
#[unstable(feature = "float_gamma", issue = "99842")]
939939
#[inline]
940940
pub fn gamma(self) -> f32 {
941941
unsafe { cmath::tgammaf(self) }

library/std/src/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ impl f64 {
961961
/// ```
962962
#[rustc_allow_incoherent_impl]
963963
#[must_use = "method returns a new number and does not mutate the original value"]
964-
#[unstable(feature = "float_gamma", issue = "none")]
964+
#[unstable(feature = "float_gamma", issue = "99842")]
965965
#[inline]
966966
pub fn gamma(self) -> f64 {
967967
unsafe { cmath::tgamma(self) }

0 commit comments

Comments
 (0)