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

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