Skip to content

Commit e2d29f6

Browse files
authored
Add f128 stability attribute to FRAC_1_SQRT_2PI
1 parent 93e0e80 commit e2d29f6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

library/core/src/num/f128.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,12 @@ pub mod consts {
6464

6565
/// 1/sqrt(π)
6666
#[unstable(feature = "f128", issue = "116909")]
67-
// Also, #[unstable(feature = "more_float_constants", issue = "103883")]
67+
6868
pub const FRAC_1_SQRT_PI: f128 =
6969
0.564189583547756286948079451560772585844050629328998856844086_f128;
7070

7171
/// 1/sqrt(2π)
72+
#[unstable(feature = "f128", issue = "116909")]
7273
pub const FRAC_1_SQRT_2PI: f128 =
7374
0.398942280401432677939946059934381868475858631164934657665926_f128;
7475

0 commit comments

Comments
 (0)