Skip to content

Commit

Permalink
Merge pull request #760 from cpprefjp/fix-namespace-for-numbers
Browse files Browse the repository at this point in the history
std -> std::numbers
  • Loading branch information
faithandbrave committed May 18, 2020
2 parents 103fb43 + 44e2b37 commit 95b8959
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion reference/numbers/e.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T e_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/egamma.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T egamma_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/inv_pi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T inv_pi_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/inv_sqrt3.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T inv_sqrt3_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/inv_sqrtpi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T inv_sqrtpi_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/ln10.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T ln10_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/ln2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T ln2_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/log10e.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T log10e_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/log2e.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T log2e_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/phi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T phi_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/pi.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T pi_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/sqrt2.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T sqrt2_v = unspecified; // (1)

Expand Down
2 changes: 1 addition & 1 deletion reference/numbers/sqrt3.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* cpp20[meta cpp]

```cpp
namespace std {
namespace std::numbers {
template <class T>
inline constexpr T sqrt3_v = unspecified; // (1)

Expand Down

0 comments on commit 95b8959

Please sign in to comment.