hypot -- Merge pull request #1120 from cpprefjp/code_qualify_check

1 · cpprefjp · Feb. 6, 2023, 9:33 a.m.
diff --git a/reference/cmath/hypot.md b/reference/cmath/hypot.md index 72e81ace9..041d83f2c 100644 --- a/reference/cmath/hypot.md +++ b/reference/cmath/hypot.md @@ -20,7 +20,7 @@ namespace std { float hypot(float x, float y, float z); // (8) C++17 から long double hypot(long double x, long double y, long double z); // (9) C++17 から - Promoted hypot(Arithmetic1 x, Arithmetic2 y, Arithmetic2 z); // (10) C++17 から + Promoted hypot(Arithmetic1 x, Arithmetic2 y, Arith...