exp2 -- <cmath>と<complex>のconstexpr対応 (close #1198)

1 · cpprefjp · Jan. 23, 2024, 6:33 a.m.
diff --git a/reference/cmath/exp2.md b/reference/cmath/exp2.md index 44b28dc80..35f918b38 100644 --- a/reference/cmath/exp2.md +++ b/reference/cmath/exp2.md @@ -7,17 +7,29 @@ ```cpp namespace std { - float exp2(float x); // (1) C++11からC++20まで - double exp2(double x); // (2) C++11からC++20まで - long double exp2(long double x); // (3) C++11からC++20まで + float exp2(float x); // (1) C++11からC++20まで + double exp2(double x); // (2) C++11からC++20まで + lo...