remquo -- <cmath> : 残りのconstexpr対応 #1067

1 · cpprefjp · Feb. 16, 2023, 9:33 a.m.
diff --git a/reference/cmath/remquo.md b/reference/cmath/remquo.md index d7b448b3c..1dd97d8b8 100644 --- a/reference/cmath/remquo.md +++ b/reference/cmath/remquo.md @@ -6,14 +6,50 @@ ```cpp namespace std { - double remquo(double x, double y, int* quo); - float remquo(float x, float y, int* quo); - long double remquo(long double x, long double y, int* quo); + float + remquo(float x, + float y, + int* quo); // (1) C++11からC++20まで + double + remquo(doub...