tmp/tmp_07ia_1q/{from.md → to.md}
RENAMED
|
@@ -35,12 +35,10 @@ namespace std {
|
|
| 35 |
static constexpr int max_exponent10 = + 38;
|
| 36 |
|
| 37 |
static constexpr bool has_infinity = true;
|
| 38 |
static constexpr bool has_quiet_NaN = true;
|
| 39 |
static constexpr bool has_signaling_NaN = true;
|
| 40 |
-
static constexpr float_denorm_style has_denorm = denorm_absent;
|
| 41 |
-
static constexpr bool has_denorm_loss = false;
|
| 42 |
|
| 43 |
static constexpr float infinity() noexcept { return value; }
|
| 44 |
static constexpr float quiet_NaN() noexcept { return value; }
|
| 45 |
static constexpr float signaling_NaN() noexcept { return value; }
|
| 46 |
static constexpr float denorm_min() noexcept { return min(); }
|
|
@@ -86,12 +84,10 @@ namespace std {
|
|
| 86 |
static constexpr int max_exponent10 = 0;
|
| 87 |
|
| 88 |
static constexpr bool has_infinity = false;
|
| 89 |
static constexpr bool has_quiet_NaN = false;
|
| 90 |
static constexpr bool has_signaling_NaN = false;
|
| 91 |
-
static constexpr float_denorm_style has_denorm = denorm_absent;
|
| 92 |
-
static constexpr bool has_denorm_loss = false;
|
| 93 |
static constexpr bool infinity() noexcept { return 0; }
|
| 94 |
static constexpr bool quiet_NaN() noexcept { return 0; }
|
| 95 |
static constexpr bool signaling_NaN() noexcept { return 0; }
|
| 96 |
static constexpr bool denorm_min() noexcept { return 0; }
|
| 97 |
|
|
|
|
| 35 |
static constexpr int max_exponent10 = + 38;
|
| 36 |
|
| 37 |
static constexpr bool has_infinity = true;
|
| 38 |
static constexpr bool has_quiet_NaN = true;
|
| 39 |
static constexpr bool has_signaling_NaN = true;
|
|
|
|
|
|
|
| 40 |
|
| 41 |
static constexpr float infinity() noexcept { return value; }
|
| 42 |
static constexpr float quiet_NaN() noexcept { return value; }
|
| 43 |
static constexpr float signaling_NaN() noexcept { return value; }
|
| 44 |
static constexpr float denorm_min() noexcept { return min(); }
|
|
|
|
| 84 |
static constexpr int max_exponent10 = 0;
|
| 85 |
|
| 86 |
static constexpr bool has_infinity = false;
|
| 87 |
static constexpr bool has_quiet_NaN = false;
|
| 88 |
static constexpr bool has_signaling_NaN = false;
|
|
|
|
|
|
|
| 89 |
static constexpr bool infinity() noexcept { return 0; }
|
| 90 |
static constexpr bool quiet_NaN() noexcept { return 0; }
|
| 91 |
static constexpr bool signaling_NaN() noexcept { return 0; }
|
| 92 |
static constexpr bool denorm_min() noexcept { return 0; }
|
| 93 |
|