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

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