Skip to content

Commit

Permalink
numeric_limits: Add and fix links to cfloat
Browse files Browse the repository at this point in the history
  • Loading branch information
nu4nu committed Apr 19, 2023
1 parent f81c873 commit a13c86a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion reference/limits/numeric_limits/digits.md
Expand Up @@ -30,7 +30,7 @@ static constexpr int digits; // C++11
|---------------|-----------------------------------------------------|
| `float` | [`FLT_MANT_DIG`](/reference/cfloat/flt_mant_dig.md) |
| `double` | [`DBL_MANT_DIG`](/reference/cfloat/dbl_mant_dig.md) |
| `long double` | [`LDBL_MANT_DIG`](/reference/cfloat/ldbl_dig.md) |
| `long double` | [`LDBL_MANT_DIG`](/reference/cfloat/ldbl_mant_dig.md) |


##
Expand Down
6 changes: 3 additions & 3 deletions reference/limits/numeric_limits/max_exponent.md
Expand Up @@ -21,9 +21,9 @@ static constexpr int max_exponent;

|| 対応するマクロ |
|---------------|----------------|
| `float` | `FLT_MAX_EXP` |
| `double` | `DBL_MAX_EXP` |
| `long double` | `LDBL_MAX_EXP` |
| `float` | [`FLT_MAX_EXP`](/reference/cfloat/flt_max_exp.md) |
| `double` | [`DBL_MAX_EXP`](/reference/cfloat/dbl_max_exp.md) |
| `long double` | [`LDBL_MAX_EXP`](/reference/cfloat/ldbl_max_exp.md) |


##
Expand Down
6 changes: 3 additions & 3 deletions reference/limits/numeric_limits/min_exponent.md
Expand Up @@ -21,9 +21,9 @@ static constexpr int min_exponent;

|| 対応するマクロ |
|---------------|----------------|
| `float` | `FLT_MIN_EXP` |
| `double` | `DBL_MIN_EXP` |
| `long double` | `LDBL_MIN_EXP` |
| `float` | [`FLT_MIN_EXP`](/reference/cfloat/flt_min_exp.md) |
| `double` | [`DBL_MIN_EXP`](/reference/cfloat/dbl_min_exp.md) |
| `long double` | [`LDBL_MIN_EXP`](/reference/cfloat/ldbl_min_exp.md) |


##
Expand Down

0 comments on commit a13c86a

Please sign in to comment.